Skip to content

Commit

Permalink
Store binary artifacts on PR/master (#127)
Browse files Browse the repository at this point in the history
  • Loading branch information
Itxaka authored Aug 10, 2022
1 parent bdd1e95 commit 7c81cbf
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,19 @@ jobs:
restore-keys: |
${{ runner.os }}-build-go-${{ hashFiles('**/go.sum') }}
- name: Build
run: make build
run: make build
- name: Store operator binary
uses: actions/upload-artifact@v3
with:
name: elemental-operator
path: build/elemental-operator
- name: Store register binary
uses: actions/upload-artifact@v3
with:
name: elemental-register
path: build/elemental-register
- name: Store support binary
uses: actions/upload-artifact@v3
with:
name: elemental-support
path: build/elemental-support

0 comments on commit 7c81cbf

Please sign in to comment.