Add windows arm64 build
This commit is contained in:
parent
81efe5f7e5
commit
db64c3771e
|
@ -121,3 +121,19 @@ jobs:
|
||||||
with:
|
with:
|
||||||
name: goldwarden-windows_x86_64.exe
|
name: goldwarden-windows_x86_64.exe
|
||||||
path: ./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
|
||||||
|
|
Loading…
Reference in New Issue