Files
RedBear-OS/local/recipes/libs/libxkbcommon/source/.github/workflows/github-release.yml
T
vasilito 04b7641e85 config: add x11proto dependency for libxau and SDDM
- Add x11proto to redbear-full.toml package list
- libxau recipe updated with x11proto dependency and custom build script
- Fixes libxau build failure: 'Package xproto was not found'
2026-06-20 14:57:46 +03:00

33 lines
797 B
YAML

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) file for the changes.
Official tarball: https://xkbcommon.org/download/lib${{ github.ref_name }}.tar.xz