forked from dotnet/vscode-csharp
-
Notifications
You must be signed in to change notification settings - Fork 17
63 lines (50 loc) · 1.39 KB
/
ci.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
name: OmniSharp-VSCode CI
on:
push:
branches: [ master, feature/** ]
pull_request:
branches: [ master, feature/** ]
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: '7.x'
- name: Install Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: '18.x'
- name: Install dependencies
run: |
npm ci
npm i -g gulp
- name: Compile
run: npm run compile
- name: Prepublish VSIXs
run: npm run vscode:prepublish
- name: Build VSIXs
run: gulp 'vsix:release:package'
- name: Upload build artifact (darwin-x64)
id: upload-release-asset-darwin-x64
uses: actions/upload-artifact@v3
with:
path: ./vsix/csharp-darwin-x64-*.vsix
name: csharp-darwin-x64.vsix
- name: Upload build artifact (linux-x64)
id: upload-release-asset-linux-x64
uses: actions/upload-artifact@v3
with:
path: ./vsix/csharp-linux-x64-*.vsix
name: csharp-linux-x64.vsix
- name: Upload build artifact (win32-x64)
id: upload-release-asset-win32-x64
uses: actions/upload-artifact@v3
with:
path: ./vsix/csharp-win32-x64-*.vsix
name: csharp-win32-x64.vsix