From 292b03494ccf23a6d439801808622f48a3f89387 Mon Sep 17 00:00:00 2001 From: Niklas Rentz Date: Mon, 25 Jul 2022 14:36:21 +0200 Subject: [PATCH] disable locally published / successfully published versions --- .github/workflows/publish.yml | 5 ----- applications/klighd-vscode/package.json | 2 +- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index d49f195f..db547cf1 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -24,11 +24,6 @@ jobs: env: VSCE_PAT: ${{ secrets.VSCE_PAT }} OVSX_PAT: ${{ secrets.OVSX_PAT }} - - name: Publish klighd-interactive - run: yarn publish - working-directory: ./packages/klighd-interactive - env: - NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} - name: Publish klighd-core run: yarn publish working-directory: ./packages/klighd-core diff --git a/applications/klighd-vscode/package.json b/applications/klighd-vscode/package.json index f679fc61..847d278b 100644 --- a/applications/klighd-vscode/package.json +++ b/applications/klighd-vscode/package.json @@ -143,7 +143,7 @@ "watch": "webpack --watch --mode development --devtool eval-source-map", "package": "vsce package --yarn --baseImagesUrl https://github.com/kieler/klighd-vscode/raw/HEAD/applications/klighd-vscode -o klighd-vscode.vsix", "predistribute": "yarn run package", - "distribute": "yarn run distribute:ovsx", + "distribute": "cd .", "distribute:vsce": "vsce publish --yarn --packagePath klighd-vscode.vsix", "distribute:ovsx": "ovsx publish --yarn klighd-vscode.vsix" },