Skip to content

Commit

Permalink
Make atrifacts specific in platform; add arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
kettek authored Oct 22, 2024
1 parent a200a6d commit 642d1fe
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,12 @@ jobs:
fail-fast: false
matrix:
build: [
{name: Staxie, platform: linux/amd64, os: ubuntu-latest},
{name: Staxie.exe, platform: windows/amd64, os: windows-latest},
{name: Staxie, platform: darwin/universal, os: macos-latest}
{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}
]
runs-on: ${{ matrix.build.os }}
steps:
Expand All @@ -29,3 +32,4 @@ jobs:
with:
build-name: ${{ matrix.build.name }}
build-platform: ${{ matrix.build.platform }}
nsis: false

0 comments on commit 642d1fe

Please sign in to comment.