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

Commit 9b58d37

Browse files
authored
Merge pull request #68 from cdr/github-build-action
Add github action to build releases
2 parents f5e37ea + 929cad0 commit 9b58d37

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/build.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: build
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
runs-on: macos-latest
8+
steps:
9+
- name: Checkout
10+
uses: actions/checkout@v1
11+
- name: Build
12+
run: ./ci/build.sh
13+
- name: Upload
14+
uses: actions/upload-artifact@v2
15+
with:
16+
name: coder-cli
17+
path: ./ci/bin/coder-cli-*

0 commit comments

Comments
 (0)