We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8734137 commit 4e33c11Copy full SHA for 4e33c11
1 file changed
action.yml
@@ -121,7 +121,7 @@ runs:
121
# We don't care about errors due to creating new tags (`|| true`)
122
# since for all packages that didn't get a new release, the tag already exists.
123
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
+ # Push tags one by one to avoid github limitation on emitting new tag events
125
git push --no-follow-tags
126
for tag in $(git tag --points-at HEAD); do git push origin "$tag"; done
127
shell: bash
0 commit comments