We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4bf959 commit ed433c7Copy full SHA for ed433c7
.github/workflows/build.yml
@@ -35,10 +35,15 @@ jobs:
35
id: commit_message
36
run: echo "message=$(git log -1 --format=%s)" >> $GITHUB_OUTPUT
37
38
+ - name: Get Short SHA
39
+ id: short_sha
40
+ run: echo "sha=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
41
+
42
- name: Upload to Latest Release
43
uses: softprops/action-gh-release@v2
44
with:
45
name: ${{ steps.commit_message.outputs.message }}
46
+ tag_name: commit-${{ steps.short_sha.outputs.sha }}
47
files: base.html
48
make_latest: true
49
env:
0 commit comments