Skip to content

Commit be7e4cb

Browse files
authored
[autobuilder.yml] Adjusting gh to use the VERSION info.
1 parent 93f85d2 commit be7e4cb

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/autobuilder.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ jobs:
3434
name: Create Release on GitHub
3535
runs-on: ubuntu-latest
3636
steps:
37+
- env:
38+
VERSION: ${{needs.debian_builder.outputs.version}}
3739
- uses: actions/download-artifact@v4 # Download all artifacts
3840
with:
3941
path: release/
@@ -45,9 +47,9 @@ jobs:
4547
cd release
4648
cp extract/* .
4749
rm -rf extract
48-
gh release create "$tag" \
50+
gh release create "$VERSION" \
4951
--repo="$GITHUB_REPOSITORY" \
50-
--title="${GITHUB_REPOSITORY#*/} ${tag#v}" \
52+
--title="${GITHUB_REPOSITORY#*/} ${VERSION}" \
5153
--generate-notes
5254
5355
build_ppa:

0 commit comments

Comments
 (0)