mirror of
https://github.com/X11Libre/xf86-video-ati.git
synced 2026-03-24 01:24:43 +00:00
This pipeline builds the driver against the latest Xserver stable release as well as current master. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
18 lines
313 B
Bash
Executable File
18 lines
313 B
Bash
Executable File
#!/bin/bash
|
|
|
|
err() {
|
|
echo "$0: $*"
|
|
}
|
|
|
|
[ "$GITHUB_REPOSITORY" ] || err "missing variable GITHUB_REPOSITORY"
|
|
|
|
TITLE=$(git tag -l --format='%(contents)' $tag)
|
|
|
|
echo "tag=$tag"
|
|
echo "title=$TITLE"
|
|
|
|
gh release create "$tag" \
|
|
--repo="$GITHUB_REPOSITORY" \
|
|
--title="$tag" \
|
|
--generate-notes
|