We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa9fb78 commit 0696db0Copy full SHA for 0696db0
.github/workflows/tag-on-merge.yml
@@ -31,14 +31,11 @@ jobs:
31
- name: Create and push tag
32
env:
33
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
34
- # Use the PR head SHA so the tag points to the actual release commit,
35
- # not the merge commit on main.
36
- RELEASE_SHA: ${{ github.event.pull_request.head.sha }}
37
run: |
38
git config user.name "github-actions[bot]"
39
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
40
-
41
- git tag ${{ steps.version.outputs.version }} $RELEASE_SHA
+
+ git tag ${{ steps.version.outputs.version }}
42
git push origin ${{ steps.version.outputs.version }}
43
44
- name: Extract changelog for release
0 commit comments