Skip to content

Commit 867657e

Browse files
committed
Update trigger-site-rebuild.yml
1 parent 33cb16c commit 867657e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/trigger-site-rebuild.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,16 @@ jobs:
1818
},
1919
{
2020
name: "Create tag",
21-
run: 'git tag v${{ steps.git_short_hash.outputs.hash }}'
21+
run: 'git tag v${{ github.sha }}'
2222
},
2323
{
2424
name: "Push to tag",
25-
run: 'git push origin v${{ steps.git_short_hash.outputs.hash }}'
25+
run: 'git push origin v${{ github.sha }}'
2626
},
2727
{
2828
name: 'Release',
2929
uses: softprops/action-gh-release@v2,
30-
with: { files: "*.zip", make_latest: true }
30+
with: { files: "*.zip", make_latest: true, tag_name: 'v${{ github.sha }}' }
3131
},
3232
{
3333
name: 'Repository dispatch',

0 commit comments

Comments
 (0)