Edit

kc3-lang/libxkbcommon/.github/workflows/github-release.yml

Branch :

  • Show log

    Commit

  • Author : dependabot[bot]
    Date : 2025-09-02 05:53:23
    Hash : c2b2b702
    Message : build(deps): bump actions/checkout from 4 to 5 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>

  • .github/workflows/github-release.yml
  • name: github-release
    
    on:
      push:
        tags:
          - 'xkbcommon-*'
    
    # Set permissions at the job level.
    permissions: {}
    
    jobs:
      build:
        name: Automatically create GitHub release for tag
        runs-on: ubuntu-22.04
        permissions:
          contents: write
        steps:
          - uses: actions/checkout@v5
            with:
              fetch-depth: 0
              persist-credentials: false
    
          - uses: actions/create-release@v1
            env:
              GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
            with:
              tag_name: ${{ github.ref }}
              release_name: ${{ github.ref }}
              body: |
                See the [NEWS](https://github.com/xkbcommon/libxkbcommon/blob/master/NEWS.md) file for the changes.