-
Notifications
You must be signed in to change notification settings - Fork 12
117 lines (98 loc) · 2.95 KB
/
publish.yaml
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
name: Publish Extension
on:
release:
types: [released]
jobs:
build:
runs-on: ubuntu-latest
steps:
# 1. Check-out repository
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0 # This ensures all tags are fetched
- name: Checkout tag
run: git checkout ${GITHUB_REF#refs/tags/}
- name: Make sure version isn't odd
run: |
node scripts/versionCheck.js
# 2. Install npm dependencies
- name: Use Node.js from .nvmrc
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- name: Cache node_modules
uses: actions/cache@v3
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('package-lock.json') }}
- name: Install Dependencies
run: |
npm ci
# 3. Package the extension
- name: Package the extension
run: npx vsce package --no-dependencies
# 4. Upload the .vsix as an artifact
- uses: actions/upload-artifact@v4
with:
name: extension
path: '*.vsix'
release:
permissions:
contents: write
runs-on: ubuntu-latest
needs:
- build
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Git
run: |
git config --local user.email "[email protected]"
git config --local user.name "CodeStory Team"
# Download the .vsix artifacts
- uses: actions/download-artifact@v4
with:
pattern: '*extension'
path: vsix-artifacts
merge-multiple: true
- name: Release
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ github.ref_name }}
files: |
vsix-artifacts/*.vsix
repository: codestoryai/extension
publish:
runs-on: ubuntu-latest
needs:
- build
permissions:
contents: write
steps:
# 0. Setup git
- name: Checkout
uses: actions/checkout@v4
- name: Set up Git
run: |
git config --local user.email "[email protected]"
git config --local user.name "CodeStory Team"
- name: Pull latest changes from release
run: git fetch origin ${{ github.ref }} && git checkout ${{ github.ref }}
# 1. Download the artifacts
- uses: actions/download-artifact@v4
with:
pattern: '*extension'
path: vsix-artifacts
merge-multiple: true
# 2. Publish the extension to VS Code Marketplace
- name: Publish to VS Code Marketplace
run: |
npx vsce publish --packagePath vsix-artifacts/*.vsix
env:
VSCE_PAT: ${{ secrets.VSCE_TOKEN }}
# 3. Publish the extension to Open VSX Registry
- name: Publish (Open VSX Registry)
continue-on-error: true
run: |
npx ovsx publish -p ${{ secrets.VSX_REGISTRY_TOKEN }} --packagePath vsix-artifacts/*.vsix