Add --no-verify when pushing tags (#3865)

This commit is contained in:
Chris Estreich 2025-05-22 13:02:04 -07:00 committed by GitHub
parent 999c3d6188
commit 48ca890c21
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -58,7 +58,7 @@ jobs:
run: |
current_package_version=$(node -p "require('./src/package.json').version")
git tag -a "v${current_package_version}" -m "Release v${current_package_version}"
git push origin "v${current_package_version}"
git push origin "v${current_package_version}" --no-verify
echo "Successfully created and pushed git tag v${current_package_version}"
- name: Publish Extension
env: