Skip to content

Commit dbcb2d6

Browse files
committed
Release workflow fix.
Signed-off-by: Timothy Rule (VM/EMT3) <[email protected]>
1 parent af26b78 commit dbcb2d6

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,11 @@ jobs:
2424
2525
- name: Add Go Module Tags
2626
run: |
27-
git config user.name "${{ github.ref }}"
28-
git config user.email "${{ github.ref }}@users.noreply.github.com"
27+
git config user.name "${{ github.actor }}"
28+
git config user.email "${{ github.actor }}@users.noreply.github.com"
2929
git tag -a -f -m "${{ env.TAG_NAME }}" extra/go/ast/${{ env.TAG_NAME }}
3030
git tag -a -f -m "${{ env.TAG_NAME }}" extra/go/command/${{ env.TAG_NAME }}
3131
git tag -a -f -m "${{ env.TAG_NAME }}" extra/go/file/${{ env.TAG_NAME }}
32-
git push --follow-tags HEAD:main
32+
git push origin tag extra/go/ast/${{ env.TAG_NAME }}
33+
git push origin tag extra/go/command/${{ env.TAG_NAME }}
34+
git push origin tag extra/go/file/${{ env.TAG_NAME }}

0 commit comments

Comments
 (0)