We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
gh
VERSION
1 parent 93f85d2 commit be7e4cbCopy full SHA for be7e4cb
1 file changed
.github/workflows/autobuilder.yml
@@ -34,6 +34,8 @@ jobs:
34
name: Create Release on GitHub
35
runs-on: ubuntu-latest
36
steps:
37
+ - env:
38
+ VERSION: ${{needs.debian_builder.outputs.version}}
39
- uses: actions/download-artifact@v4 # Download all artifacts
40
with:
41
path: release/
@@ -45,9 +47,9 @@ jobs:
45
47
cd release
46
48
cp extract/* .
49
rm -rf extract
- gh release create "$tag" \
50
+ gh release create "$VERSION" \
51
--repo="$GITHUB_REPOSITORY" \
- --title="${GITHUB_REPOSITORY#*/} ${tag#v}" \
52
+ --title="${GITHUB_REPOSITORY#*/} ${VERSION}" \
53
--generate-notes
54
55
build_ppa:
0 commit comments