Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
isc-bsaviano committed Feb 13, 2023
1 parent 3f932ff commit efb3d78
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: 16
- run: npm install -g @vscode/vsce ovsx
- run: npm install -g @vscode/vsce
- name: Download packages
uses: actions/download-artifact@v3
- name: Attach packages to release
Expand All @@ -109,13 +109,13 @@ jobs:
env:
VSCE_PAT: ${{ secrets.VSCE_TOKEN }}
if: env.VSCE_PAT != null
run: vsce publish --packagePath $(find . -iname "*.vsix" -type f)
run: vsce publish --skip-duplicate --packagePath $(find . -iname "*.vsix" -type f)
- name: Publish to Open VSX Registry
env:
OVSX_PAT: ${{ secrets.OVSX_TOKEN }}
if: env.OVSX_PAT != null
timeout-minutes: 5
run: ovsx publish $(find . -iname "*.vsix" -type f)
run: npx ovsx publish --skip-duplicate $(find . -iname "*.vsix" -type f)
bump_version:
runs-on: ubuntu-latest
needs: [build, publish]
Expand Down

0 comments on commit efb3d78

Please sign in to comment.