From 75e07b7df20d6465e7deae8de52d449e1f37f7be Mon Sep 17 00:00:00 2001 From: kettek Date: Mon, 21 Oct 2024 22:19:57 -0700 Subject: [PATCH] Remove arm64 until further notice; adjust names to use explicit platform --- .github/workflows/build.yml | 30 ++++++++++++++++++++---------- 1 file changed, 20 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 547a924..9abd599 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -3,8 +3,8 @@ name: Wails build on: push: tags: - # Match any new tag - - '*' + # Match any new tag + - "*" env: # Necessary for most environments as build failure can occur due to OOM issues @@ -15,14 +15,24 @@ jobs: strategy: fail-fast: false matrix: - build: [ - {name: "Staxie-x64", platform: linux/amd64, os: ubuntu-latest}, - {name: "Staxie-arm64", platform: linux/arm64, os: ubuntu-latest}, - {name: "Staxie-x64.exe", platform: windows/amd64, os: windows-latest}, - {name: "Staxie-arm64.exe", platform: windows/arm64, os: windows-latest}, - {name: "Staxie-darwin-x64", platform: darwin/amd64, os: macos-latest}, - {name: "Staxie-darwin-arm64", platform: darwin/arm64, os: macos-latest} - ] + build: + [ + { + name: "Staxie-linux-amd64", + platform: linux/amd64, + os: ubuntu-latest, + }, + { + name: "Staxie-windows-amd64.exe", + platform: windows/amd64, + os: windows-latest, + }, + { + name: "Staxie-darwin-universal", + platform: darwin/universal, + os: macos-latest, + }, + ] runs-on: ${{ matrix.build.os }} steps: - uses: actions/checkout@v2