Skip to content

Commit

Permalink
update github action
Browse files Browse the repository at this point in the history
  • Loading branch information
lefebsy committed Jul 9, 2024
1 parent 96e66da commit fa2e63a
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,19 @@ jobs:
release-tag: ${{ github.ref_name }}


- name: Marketplace
- name: Marketplace Microsoft
env:
MARKET_PERSONAL_ACCESS_TOKEN: ${{ secrets.MARKET_PERSONAL_ACCESS_TOKEN }}
run: |
ls *.vsix
npm install -g @vscode/vsce
vsce publish --pat $MARKET_PERSONAL_ACCESS_TOKEN
- name: Marketplace Open VSX
env:
OPEN_MARKET_PERSONAL_ACCESS_TOKEN: ${{ secrets.OPEN_MARKET_PERSONAL_ACCESS_TOKEN }}
run: |
ls *.vsix
npm install --global ovsx
npx ovsx publish ./*.vsix --pat $OPEN_MARKET_PERSONAL_ACCESS_TOKEN

0 comments on commit fa2e63a

Please sign in to comment.