Skip to content

Commit f4387cb

Browse files
author
PEZ
committed
Make release publishing a dry-run for now
1 parent 53b9968 commit f4387cb

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,9 @@ jobs:
8282
merge-multiple: true
8383

8484
- name: Publish to VS Code Marketplace
85-
run: npx vsce publish --packagePath /tmp/*.vsix --pat ${{ secrets.VSIX_TOKEN }} --githubBranch master
85+
run: | # TODO: Actually publish to the marketplace. For now, only verify that the personal access token will work
86+
npx vsce verify-pat --pat ${{ secrets.VSIX_TOKEN }}
87+
echo npx vsce publish --packagePath /tmp/*.vsix --pat ${{ secrets.VSIX_TOKEN }} --githubBranch master
8688
8789
publish-to-open-vsx:
8890
runs-on: ubuntu-latest
@@ -115,7 +117,9 @@ jobs:
115117
merge-multiple: true
116118

117119
- name: Publish to Open VSX
118-
run: npx ovsx publish /tmp/*.vsix --pat ${{ secrets.OPEN_VSX_TOKEN }}
120+
run: | # TODO: Actually publish to open-vsx. For now, only verify that the personal access token will work
121+
npx ovsx verify-pat --pat ${{ secrets.OPEN_VSX_TOKEN }}
122+
echo npx ovsx publish /tmp/*.vsix --pat ${{ secrets.OPEN_VSX_TOKEN }}
119123
120124
bump-version:
121125
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)