From e72a3a2385794f5932881851f7e1135af2c0bbb2 Mon Sep 17 00:00:00 2001 From: Mark McCulloh Date: Wed, 29 May 2024 08:59:39 -0400 Subject: [PATCH] chore: disable OpenVSX publishing --- .github/workflows/publish.yml | 5 ----- .projenrc.ts | 3 ++- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 84422c5..b43e72b 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -86,11 +86,6 @@ jobs: with: name: build-artifact path: dist - - name: Publish to Open VSX Registry - uses: HaaLeo/publish-vscode-extension@v1 - with: - pat: ${{ secrets.VSX_REGISTRY_TOKEN }} - extensionFile: ./dist/extension.vsix - name: Publish to VS Marketplace uses: HaaLeo/publish-vscode-extension@v1 with: diff --git a/.projenrc.ts b/.projenrc.ts index 8e5eee7..7b20a46 100644 --- a/.projenrc.ts +++ b/.projenrc.ts @@ -152,7 +152,8 @@ const project = new VSCodeExtensionProject({ displayName: "Projen", icon: "resources/projen.png", publishToVSMarketplace: true, - publishToOpenVSXRegistry: true, + // Disabled for now + publishToOpenVSXRegistry: false, vscodeVersion: "^1.62.0", description: "Projen helpers and utilities", publisher: "MarkMcCulloh",