We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58d3828 commit 9628150Copy full SHA for 9628150
.github/workflows/main.yml
@@ -51,9 +51,10 @@ jobs:
51
env:
52
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
53
run: |
54
- gh release create master \
+ git_hash=$(git rev-parse --short "$GITHUB_SHA")
55
+ gh release create master-$git_hash \
56
/home/runner/work/gcc/gcc-13.deb \
57
--prerelease \
58
--repo="$GITHUB_REPOSITORY" \
- --title="${GITHUB_REPOSITORY#*/} $(git rev-parse --short "$GITHUB_SHA")" \
59
+ --title="${GITHUB_REPOSITORY#*/} $git_hash" \
60
--generate-notes
0 commit comments