Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Store binary artifacts on PR/master #127

Merged
merged 2 commits into from
Aug 10, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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