Skip to content

Commit 4e33c11

Browse files
authored
chore: Fix typo in comment about tag events
1 parent 8734137 commit 4e33c11

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ runs:
121121
# We don't care about errors due to creating new tags (`|| true`)
122122
# since for all packages that didn't get a new release, the tag already exists.
123123
melos exec -c 1 ${{ (inputs.include-private == 'true' && '--private') || '--no-private' }} -- git tag \$MELOS_PACKAGE_NAME-v\$MELOS_PACKAGE_VERSION || true
124-
# Push tags one by one to avoid github limitation on emmiting new tag event
124+
# Push tags one by one to avoid github limitation on emitting new tag events
125125
git push --no-follow-tags
126126
for tag in $(git tag --points-at HEAD); do git push origin "$tag"; done
127127
shell: bash

0 commit comments

Comments
 (0)