From d12ee3db12d38a63313f580354ecf74bf7e2e1cd Mon Sep 17 00:00:00 2001 From: Saoud Rizwan <7799382+saoudrizwan@users.noreply.github.com> Date: Sat, 23 Aug 2025 15:29:23 -0700 Subject: [PATCH] Revert "fix publish yml action (#5770)" This reverts commit 357f98c7070cd012c41a5957f28c47105c510570. --- .github/workflows/publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index b15a334efd..4c65352024 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -100,10 +100,10 @@ jobs: vsce package --allow-package-secrets sendgrid --out "cline-${{ steps.get_version.outputs.version }}.vsix" if [ "${{ github.event.inputs.release-type }}" = "pre-release" ]; then - npm run publish:marketplace:prerelease -- --allow-package-secrets sendgrid + npm run publish:marketplace:prerelease echo "Successfully published pre-release version ${{ steps.get_version.outputs.version }} to VS Code Marketplace and Open VSX Registry" else - npm run publish:marketplace -- --allow-package-secrets sendgrid + npm run publish:marketplace echo "Successfully published release version ${{ steps.get_version.outputs.version }} to VS Code Marketplace and Open VSX Registry" fi