From b58d256744b064db3452a15a75f3ddfd715a22d5 Mon Sep 17 00:00:00 2001 From: Bernd Schoolmann Date: Sun, 4 Feb 2024 10:12:11 +0100 Subject: [PATCH] Update release.yml --- .github/workflows/release.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 275941c..d4ca3fe 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -188,3 +188,19 @@ jobs: with: files: './goldwarden_windows_x86_64.exe' repo-token: ${{ secrets.GITHUB_TOKEN }} + + 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: '1.20' + - name: Build + run: go build -tags nofido2 -o "goldwarden_windows_aarch64.exe" -v . + - uses: AButler/upload-release-assets@v2.0 + with: + files: './goldwarden_windows_aarch64.exe' + repo-token: ${{ secrets.GITHUB_TOKEN }}