We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a58f3f1 commit 4431828Copy full SHA for 4431828
.github/workflows/release-libs.yml
@@ -48,7 +48,12 @@ jobs:
48
id: "commit"
49
run: echo "hash=$(git rev-parse --short HEAD)" >> "$GITHUB_OUTPUT"
50
51
- - name: "Create hash-tagged release"
+ - name: "Create tag"
52
+ run: |
53
+ git tag "${{ steps.commit.outputs.hash }}"
54
+ git push origin "${{ steps.commit.outputs.hash }}"
55
+
56
+ - name: "Create release"
57
env:
58
GH_TOKEN: "${{ github.token }}"
59
run: |
0 commit comments