Add windows arm64 build

This commit is contained in:
Bernd Schoolmann 2024-02-04 10:10:26 +01:00 committed by GitHub
parent 81efe5f7e5
commit db64c3771e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 16 additions and 0 deletions

View File

@ -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