File tree Expand file tree Collapse file tree 2 files changed +15
-3
lines changed Expand file tree Collapse file tree 2 files changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,19 @@ name: build
2
2
on : [push]
3
3
4
4
jobs :
5
- build :
5
+ build_linux :
6
+ runs-on : ubuntu-latest
7
+ steps :
8
+ - name : Checkout
9
+ uses : actions/checkout@v1
10
+ - name : Build
11
+ run : ./ci/steps/build.sh
12
+ - name : Upload
13
+ uses : actions/upload-artifact@v2
14
+ with :
15
+ name : coder-cli-linuxbuild
16
+ path : ./ci/bin/coder-cli-*
17
+ build_macos :
6
18
runs-on : macos-latest
7
19
steps :
8
20
- name : Checkout
24
36
- name : Upload
25
37
uses : actions/upload-artifact@v2
26
38
with :
27
- name : coder-cli
39
+ name : coder-cli-macosbuild
28
40
path : ./ci/bin/coder-cli-*
Original file line number Diff line number Diff line change 58
58
fi
59
59
60
60
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 build
61
- GOOS=windows GOARCH=386 build
61
+ CGO_ENABLED=0 GOOS=windows GOARCH=386 build
You can’t perform that action at this time.
0 commit comments