Hash :
4b498b69
Author :
Date :
2025-02-05T09:59:21
ci: fix link to NEWS file in releases Fixes 737706fe83f2 doc: Use towncrier to handle release notes
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@v4
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.