-
-
Notifications
You must be signed in to change notification settings - Fork 2
78 lines (69 loc) · 2.65 KB
/
release.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
'on':
release:
types: [published]
workflow_dispatch: {}
name: Release
jobs:
release:
permissions:
contents: write
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
include:
- os: ubuntu-latest
targets: [linux-x64]
- os: macos-latest
targets: [darwin-x64, darwin-arm64]
- os: windows-latest
targets: [win32-x64]
runs-on: '${{ matrix.os }}'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 18.x
- name: Cache node modules
id: cache-npm
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- run: npm install
- name: create extension package
run: |
for target in ${{ join(matrix.targets, ' ') }}; do
npm run package -- --target $target
done
- name: create github release
uses: ncipollo/release-action@v1
with:
artifacts: '*.vsix'
replacesArtifacts: false
tag: ${{ github.ref_name }}
allowUpdates: true
makeLatest: false
omitNameDuringUpdate: true
omitBodyDuringUpdate: true
omitPrereleaseDuringUpdate: true
omitDraftDuringUpdate: true
- name: publish to open vsx registry
uses: HaaLeo/publish-vscode-extension@v1
with:
target: ${{ join(matrix.targets, ' ') }}
registryUrl: https://open-vsx.org
pat: ${{ secrets.OVSX_TOKEN }}
- name: publish to visual studio marketplace
uses: HaaLeo/publish-vscode-extension@v1
with:
target: ${{ join(matrix.targets, ' ') }}
registryUrl: https://marketplace.visualstudio.com
pat: ${{ secrets.VSCE_PAT }}