Skip to content

Commit 8819840

Browse files
committed
ci: dont annotate the git tag
We kind of have two options here, provide an additional message for the `-a` tag or add an addtional message with the `-m` argument. From the help message: ``` -a, --annotate annotated tag, needs a message ``` I opted for removing it but if you feel like we should rather add a message let me know
1 parent 3610c1b commit 8819840

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
run: |
5555
git config --global user.name 'Github Bot'
5656
git config --global user.email '<>'
57-
git tag -a ${{ github.events.inputs.version }}
57+
git tag ${{ github.events.inputs.version }}
5858
- name: Push tag
5959
if: ${{ github.event.inputs.dry_run != 'true' }}
6060
run: |

0 commit comments

Comments
 (0)