From f85938fa1256fd80d879c80e987dbe17d6b297c2 Mon Sep 17 00:00:00 2001 From: comp500 <comp500@users.noreply.github.com> Date: Mon, 11 Apr 2022 00:11:05 +0100 Subject: [PATCH] Expose darwin/arm64 and windows/arm64 builds (fixes #105) --- .github/workflows/go.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 6788f3b..6fb2d16 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -36,6 +36,12 @@ jobs: name: Windows 32-bit path: dist/packwiz_windows_386/ + - name: Upload assets + uses: actions/upload-artifact@v2 + with: + name: Windows 64-bit ARM + path: dist/packwiz_windows_arm64/ + - name: Upload assets uses: actions/upload-artifact@v2 with: @@ -57,5 +63,11 @@ jobs: - name: Upload assets uses: actions/upload-artifact@v2 with: - name: macOS 64-bit + name: macOS 64-bit x86 path: dist/packwiz_darwin_amd64/ + + - name: Upload assets + uses: actions/upload-artifact@v2 + with: + name: macOS 64-bit ARM + path: dist/packwiz_darwin_arm64/ \ No newline at end of file