From 48ca890c215d4eddbfb184ef1f7ffe03c1c109d3 Mon Sep 17 00:00:00 2001 From: Chris Estreich Date: Thu, 22 May 2025 13:02:04 -0700 Subject: [PATCH] Add --no-verify when pushing tags (#3865) --- .github/workflows/marketplace-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/marketplace-publish.yml b/.github/workflows/marketplace-publish.yml index a484f8f5c4..d86be2083b 100644 --- a/.github/workflows/marketplace-publish.yml +++ b/.github/workflows/marketplace-publish.yml @@ -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: