-
-
Notifications
You must be signed in to change notification settings - Fork 47
42 lines (37 loc) · 1.07 KB
/
release.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
name: Release vsix to OpenVSX and VSCode marketplace
on:
release:
types: [published]
jobs:
release:
name: "Release"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
with:
submodules: true
- name: Set Node.js 10.x
uses: actions/setup-node@master
with:
version: 14.x
- name: npm install
run: npm install
- name: typescript
run: npx tsc
- name: Publish to Open VSX Registry
uses: HaaLeo/publish-vscode-extension@v0
id: publishToOpenVSX
with:
pat: ${{ secrets.OPEN_VSX_TOKEN }}
- name: Publish to Visual Studio Marketplace
uses: HaaLeo/publish-vscode-extension@v0
with:
pat: ${{ secrets.VS_MARKETPLACE_TOKEN }}
registryUrl: https://marketplace.visualstudio.com
extensionFile: ${{ steps.publishToOpenVSX.outputs.vsixPath }}
packagePath: ''
- name: Upload
uses: djn24/add-asset-to-release@v1
with:
token: ${{secrets.GITHUB_TOKEN}}
path: ${{ steps.publishToOpenVSX.outputs.vsixPath }}