Skip to content

Commit

Permalink
Add windows arm64 build
Browse files Browse the repository at this point in the history
  • Loading branch information
quexten authored Feb 4, 2024
1 parent 81efe5f commit db64c37
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,3 +121,19 @@ jobs:
with:
name: goldwarden-windows_x86_64.exe
path: ./goldwarden_windows_x86_64.exe

build_windows_aarch64:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
- name: Build
run: GOARCH=arm64 go build -tags nofido2 -o "goldwarden_windows_aarch64.exe" -v .
- uses: actions/upload-artifact@v3
with:
name: goldwarden-windows_aarch64.exe
path: ./goldwarden_windows_aarch64.exe

0 comments on commit db64c37

Please sign in to comment.