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 0ceb780 commit b9bba92Copy full SHA for b9bba92
.github/workflows/remote-release-trigger.yml
@@ -56,9 +56,14 @@ jobs:
56
57
return "v" + cli_version_segments.join(".")
58
59
+ - name: Calculate the SHA of HEAD on the main branch
60
+ id: calculate_head_sha
61
+ run: echo "commit_sha=$(git rev-parse HEAD)" >> "$GITHUB_OUTPUT"
62
+
63
- uses: rickstaa/action-create-tag@84c90e6ba79b47b5147dcb11ff25d6a0e06238ba # pin@v1
64
with:
65
tag: ${{ steps.calculate_version.outputs.result }}
66
+ commit_sha: ${{ steps.calculate_head_sha.outputs.commit_sha }}
67
68
- name: Release
69
uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844 # pin@v1
0 commit comments