Skip to content

Commit

Permalink
publish
Browse files Browse the repository at this point in the history
  • Loading branch information
Qusic committed Apr 14, 2023
1 parent 9b042d3 commit 466393c
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,23 @@ jobs:
with:
name: addons
path: build
- name: Generate Packages
- name: Generate Package
run: npx vsce package --out gnls.vsix
- name: Upload Packages
- name: Upload Package
uses: actions/upload-artifact@v3
with:
name: packages
name: package
path: gnls.vsix
publish:
name: Publish
needs: build
runs-on: ubuntu-latest
# if: github.ref == 'refs/heads/main'
steps:
- name: Download Package
uses: actions/download-artifact@v3
with:
name: package
path: .
- name: Publish Package
run: npx vsce verify-pat # npx vsce publish --skip-duplicate --packagePath gnls.vsix

0 comments on commit 466393c

Please sign in to comment.