Publish Extension #13
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish Extension | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
build-and-test: | |
uses: ./.github/workflows/build-and-test.yml | |
secrets: inherit | |
publish-to-marketplace: | |
needs: build-and-test | |
runs-on: ubuntu-latest | |
env: | |
EXTENSION_VERSION: ${{ needs.build-and-test.outputs.extVersion }} | |
steps: | |
- name: Download artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: DocGPT-signed.vsix | |
path: ./DocGPT.vsix | |
- name: Publish to marketplace | |
uses: cezarypiatek/VsixPublisherAction@1.1 | |
with: | |
extension-file: ./DocGPT.vsix | |
publish-manifest-file: ./DocGpt.Vsix/publishmanifest.json | |
personal-access-code: ${{ secrets.MARKETPLACE_PAT }} | |
publish-gh-release: | |
needs: build-and-test | |
runs-on: ubuntu-latest | |
permissions: write-all | |
steps: | |
- name: Download artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: DocGPT.vsix | |
path: ./DocGPT.vsix | |
- name: Create Release | |
run: | | |
gh release create --target "${{ github.sha }}" \ | |
--title "v${{ env.EXTENSION_VERSION }}" \ | |
--generate-notes | |
--draft | |
- name: Upload Release Asset | |
run: | | |
gh release upload "v${{ env.EXTENSION_VERSION }}" \ | |
--file ./DocGPT.vsix#Installer \ | |
--clobber |