Skip to content

Bump Microsoft.VSSDK.BuildTools in /DocGpt.Vsix #38

Bump Microsoft.VSSDK.BuildTools in /DocGpt.Vsix

Bump Microsoft.VSSDK.BuildTools in /DocGpt.Vsix #38

name: Publish Extension
on:
push:
branches:
- main
paths-ignore:
- '.github/**'
workflow_dispatch:
jobs:
build-and-test:
uses: ./.github/workflows/build-and-test.yml

Check failure on line 13 in .github/workflows/publish-extension.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/publish-extension.yml

Invalid workflow file

error parsing called workflow ".github/workflows/publish-extension.yml" -> "./.github/workflows/build-and-test.yml" (source branch with sha:d26afe47e859addcc5adda027bc15dfd4b48cd28) : workflow is not reusable as it is missing a `on.workflow_call` trigger
secrets: inherit
publish-to-marketplace:
needs: build-and-test
runs-on: windows-latest
env:
EXTENSION_VERSION: ${{ needs.build-and-test.outputs.extVersion }}
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
show-progress: false
sparse-checkout: |
DocGpt.Vsix/publishmanifest.json
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: DocGPT-signed.vsix
path: .\o
- name: Publish to marketplace
uses: cezarypiatek/VsixPublisherAction@1.1
with:
extension-file: .\o\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:
contents: write
env:
EXTENSION_VERSION: ${{ needs.build-and-test.outputs.extVersion }}
GH_TOKEN: ${{ github.token }}
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
show-progress: false
sparse-checkout: |
README.md
- name: Create tag
run: |
git -c user.name="GitHub Actions" -c user.email="actions@github.com" tag "v${{ env.EXTENSION_VERSION }}" "${{ github.sha }}"
git push --tags origin
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: DocGPT-signed.vsix
path: ./o
- name: Create Release
run: |
gh release create "v${{ env.EXTENSION_VERSION }}" \
--generate-notes \
--draft
- name: Upload Release Asset
run: |
gh release upload "v${{ env.EXTENSION_VERSION }}" \
./o/DocGPT.vsix#Installer \
--clobber