-
-
Notifications
You must be signed in to change notification settings - Fork 1
66 lines (56 loc) · 1.64 KB
/
publish-extension.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
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: 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/[email protected]
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: write-all
env:
EXTENSION_VERSION: ${{ needs.build-and-test.outputs.extVersion }}
steps:
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: DocGPT-signed.vsix
path: ./o
- 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 ./o/DocGPT.vsix#Installer \
--clobber