Skip to content

Commit

Permalink
ci: fix v3
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurfiorette committed Jun 20, 2023
1 parent 7f4d502 commit 8dd0e95
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,18 +77,23 @@ jobs:
attach:
needs: [test]
name: Attach release binaries for ${{ matrix.target }}
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}

strategy:
fail-fast: false
matrix:
target:
[
x86_64-unknown-linux-musl,
x86_64-pc-windows-msvc,
x86_64-apple-darwin,
armv7-unknown-linux-gnueabihf
]
include:
- os: ubuntu-latest
target: x86_64-unknown-linux-musl

- os: windows-latest
target: x86_64-pc-windows-msvc

- os: macos-latest
target: x86_64-apple-darwin

- os: ubuntu-latest
target: armv7-unknown-linux-gnueabihf

steps:
- name: Checkout
Expand Down

0 comments on commit 8dd0e95

Please sign in to comment.