Skip to content

Commit

Permalink
Add osvx packages to cd
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanH-AT committed Jun 14, 2024
1 parent 0f4dddb commit a990c38
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,22 @@ jobs:
run: npm run test

- name: Set up publishing
run: npm install vsce --save-dev
run: |
npm install vsce --save-dev
npm install ovsx --save-dev
- name: Publish
run: npm run deploy
env:
VSCE_PAT: ${{ secrets.VSCE_PAT }}


- name: Create OVSX Package
run: npx vsce package --out package.vsix

- name: Publish OVSX Package
run: |
npx ovsx publish package.vsix --pat ${{ secrets.OVSX_PAT }}
- name: Read package.json
id: package-json
run: |
Expand All @@ -38,7 +47,7 @@ jobs:
content="${content//$'\n'/'%0A'}"
content="${content//$'\r'/'%0D'}"
echo "::set-output name=packageJson::$content"
- name: Get Changelog
id: changelog
run: |
Expand Down

0 comments on commit a990c38

Please sign in to comment.