Skip to content

Commit 3f1b9e4

Browse files
remove build step
1 parent 353cb00 commit 3f1b9e4

File tree

3 files changed

+7
-11
lines changed

3 files changed

+7
-11
lines changed

.github/workflows/publish-ovsx.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,11 @@ jobs:
2626
- name: Set version from branch name
2727
uses: ./.github/actions/set-version
2828

29-
- name: Build VSIX package
30-
uses: ./.github/actions/build-vsix
31-
with:
32-
version: ${{ env.VERSION }}
33-
3429
- name: Publish to Open VSX
3530
run: make publish-ovsx
3631
env:
3732
VERSION: ${{ env.VERSION }}
3833
OVSX_PAT: ${{ secrets.OVSX_PAT }}
34+
LOCALSTACK_WEB_AUTH_REDIRECT: https://app.localstack.cloud/redirect?name=VSCode
35+
NODE_ENV: production
36+
ANALYTICS_API_URL: https://analytics.localstack.cloud/v1/events

.github/workflows/publish-vs-marketplace.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,11 @@ jobs:
2626
- name: Set version from branch name
2727
uses: ./.github/actions/set-version
2828

29-
- name: Build VSIX package
30-
uses: ./.github/actions/build-vsix
31-
with:
32-
version: ${{ env.VERSION }}
33-
3429
- name: Publish to VS Marketplace
3530
run: make publish-marketplace
3631
env:
3732
VERSION: ${{ env.VERSION }}
3833
VSCE_PAT: ${{ secrets.VSCE_PAT }}
34+
LOCALSTACK_WEB_AUTH_REDIRECT: https://app.localstack.cloud/redirect?name=VSCode
35+
NODE_ENV: production
36+
ANALYTICS_API_URL: https://analytics.localstack.cloud/v1/events

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ publish-ovsx:
3232
@echo "Publishing VS Code extension to Open VSX..."
3333
@echo "Verifying PAT..."
3434
npx ovsx verify-pat localstack -p $(OVSX_PAT)
35-
npx ovsx publish localstack-$(VERSION).vsix -p $(OVSX_PAT)
35+
npx ovsx publish --pre-release ${VERSION) -p $(OVSX_PAT) --no-update-package-json

0 commit comments

Comments
 (0)