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