Skip to content

Commit

Permalink
use os matrix to download artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
mpwsh committed Oct 3, 2023
1 parent e4edc39 commit 794aed7
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Test, build and release binary
name: Build and release binary
on:
push:
branches:
Expand Down Expand Up @@ -109,6 +109,21 @@ jobs:
needs:
- build
runs-on: ubuntu-latest
strategy:
matrix:
include:
- os: macos-latest
target: x86_64-apple-darwin
suffix: ''
- os: macos-latest-xlarge
target: aarch64-apple-darwin
suffix: ''
- os: ubuntu-latest
target: x86_64-unknown-linux-gnu
suffix: ''
- os: windows-latest
target: x86_64-pc-windows-msvc
suffix: .exe
steps:
- uses: actions/checkout@master
with:
Expand Down

0 comments on commit 794aed7

Please sign in to comment.