Skip to content

Commit

Permalink
Remove arm64 until further notice; adjust names to use explicit platform
Browse files Browse the repository at this point in the history
  • Loading branch information
kettek committed Oct 22, 2024
1 parent 642d1fe commit 75e07b7
Showing 1 changed file with 20 additions and 10 deletions.
30 changes: 20 additions & 10 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 75e07b7

Please sign in to comment.