Skip to content

Commit

Permalink
Added arm variant
Browse files Browse the repository at this point in the history
  • Loading branch information
lkarlslund committed Oct 16, 2024
1 parent 44b8584 commit ee9b3bc
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,17 @@ jobs:
with:
go-version: '1.23'

- name: Build
run: go build .
- name: Build X64
run: go build -o nifo-x64.exe .
env:
GOOS: windows
GOARCH: amd64

- name: Build ARM
run: go build -o nifo-arm64.exe .
env:
GOOS: windows
GOARCH: arm64

- uses: "marvinpinto/action-automatic-releases@latest"
with:
Expand Down

0 comments on commit ee9b3bc

Please sign in to comment.