Skip to content

Commit 8714513

Browse files
committed
ci: Upload binary in CI
1 parent 3bfa4b1 commit 8714513

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/go.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,19 @@ jobs:
1717
go-version: 1.15
1818

1919
- name: Build
20-
run: go build -v ./...
20+
run: |
21+
mkdir artifacts
22+
go build -o artifacts -v ./...
2123
2224
- name: Test
2325
run: go test -v ./...
2426

27+
- name: Upload artifacts
28+
uses: actions/upload-artifact@v2
29+
with:
30+
name: meshboi
31+
path: artifacts/meshboi
32+
2533
integration-test:
2634
container:
2735
image: golang:1.16.3-buster

0 commit comments

Comments
 (0)