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

Commit 929cad0

Browse files
committed
Add github action to build releases
1 parent eb2c835 commit 929cad0

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

Diff for: .github/workflows/build.yaml

+17
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)