Skip to content

Commit

Permalink
Support new makefile syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
orblazer committed Jul 19, 2024
1 parent 4215d6d commit f51e5d4
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,14 @@ jobs:
name: Build
runs-on: ubuntu-latest

strategy:
matrix:
os:
- linux
arch:
- amd64
- arm64

steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -52,7 +60,7 @@ jobs:
- name: Build project
run: |
make release
make release GOOS=${{ matrix.os }} GOARCH=${{ matrix.arch }}
- name: Upload image tarballs to GCS
run: |
Expand Down

0 comments on commit f51e5d4

Please sign in to comment.