Skip to content

Commit 7e8848a

Browse files
committed
Add --no-verify when pushing tags
1 parent 999c3d6 commit 7e8848a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/marketplace-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
run: |
5959
current_package_version=$(node -p "require('./src/package.json').version")
6060
git tag -a "v${current_package_version}" -m "Release v${current_package_version}"
61-
git push origin "v${current_package_version}"
61+
git push origin "v${current_package_version}" --no-verify
6262
echo "Successfully created and pushed git tag v${current_package_version}"
6363
- name: Publish Extension
6464
env:

0 commit comments

Comments
 (0)