Skip to content

Commit

Permalink
fix: use yaml lists instead of objects in release.yml (#8182)
Browse files Browse the repository at this point in the history
  • Loading branch information
Rjected authored May 9, 2024
1 parent 4bbc850 commit 87fee5e
Showing 1 changed file with 21 additions and 28 deletions.
49 changes: 21 additions & 28 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,34 +31,27 @@ jobs:
needs: extract-version
strategy:
matrix:
configs: [
{
target: x86_64-unknown-linux-gnu
os: ubuntu-20.04
profile: maxperf
},
{
target: aarch64-unknown-linux-gnu
os: ubuntu-20.04
profile: maxperf
},
{
target: x86_64-apple-darwin
os: macos-13
profile: maxperf
},
{
target: aarch64-apple-darwin
os: macos-14
profile: maxperf
},
{
target: x86_64-pc-windows-gnu
os: ubuntu-20.04
profile: maxperf
},
]
build: [{command: build, binary: reth}, {command: op-build, binary: op-reth}]
configs:
- target: x86_64-unknown-linux-gnu
os: ubuntu-20.04
profile: maxperf
- target: aarch64-unknown-linux-gnu
os: ubuntu-20.04
profile: maxperf
- target: x86_64-apple-darwin
os: macos-13
profile: maxperf
- target: aarch64-apple-darwin
os: macos-14
profile: maxperf
- target: x86_64-pc-windows-gnu
os: ubuntu-20.04
profile: maxperf
build:
- command: build
binary: reth
- command: op-build
binary: op-reth
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
Expand Down

0 comments on commit 87fee5e

Please sign in to comment.