From a7099df97b0d318e184e47a0a75a8ebc2f9078d8 Mon Sep 17 00:00:00 2001 From: esarver Date: Tue, 9 Jul 2024 08:24:51 -0400 Subject: [PATCH] Add back in the step that auto-publishes to the marketplace (#31) In the v0.16.1 release, the version was automatically pushed before the PR was closed (this was expected, it was part of testing). The step that was added back in as part of this PR was removed to prevent naming conflicts. The publish step will only run after a successful merge from a release branch. --- .github/workflows/pr.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index aebe3c0..28b9edf 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -162,7 +162,7 @@ jobs: run: | echo "//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}" > .npmrc npm install --devDependencies - # npx vsce publish --packagePath extension/*.vsix + npx vsce publish --packagePath extension/*.vsix env: VSCE_PAT: ${{secrets.VSCE_PAT}}