We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33cb16c commit 867657eCopy full SHA for 867657e
.github/workflows/trigger-site-rebuild.yml
@@ -18,16 +18,16 @@ jobs:
18
},
19
{
20
name: "Create tag",
21
- run: 'git tag v${{ steps.git_short_hash.outputs.hash }}'
+ run: 'git tag v${{ github.sha }}'
22
23
24
name: "Push to tag",
25
- run: 'git push origin v${{ steps.git_short_hash.outputs.hash }}'
+ run: 'git push origin v${{ github.sha }}'
26
27
28
name: 'Release',
29
uses: softprops/action-gh-release@v2,
30
- with: { files: "*.zip", make_latest: true }
+ with: { files: "*.zip", make_latest: true, tag_name: 'v${{ github.sha }}' }
31
32
33
name: 'Repository dispatch',
0 commit comments