Skip to content
This repository was archived by the owner on Aug 30, 2024. It is now read-only.

Commit fe174b1

Browse files
committed
fixup! Add github action to build releases
1 parent 50f96df commit fe174b1

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.github/workflows/build.yaml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,15 @@ jobs:
2020
git config --global url.ssh://git@github.com/.insteadOf https://github.com/
2121
./ci/build.sh
2222
23-
- name: Upload
23+
- name: Upload linux
2424
uses: actions/upload-artifact@v2
2525
with:
26-
path: ./ci/bin/coder-cli-*
26+
name: coder-cli-linux-amd64.tar.gz
27+
path: ./ci/bin/coder-cli-linux-amd64.tar.gz
28+
29+
- name: Upload darwin
30+
uses: actions/upload-artifact@v2
31+
with:
32+
name: coder-cli-darwin-amd64.tar.gz
33+
path: ./ci/bin/coder-cli-darwin-amd64.tar.gz
34+

0 commit comments

Comments
 (0)