From 87fee5e8be1983f0baf1647437dd2b098e279ace Mon Sep 17 00:00:00 2001 From: Dan Cline <6798349+Rjected@users.noreply.github.com> Date: Thu, 9 May 2024 13:00:42 -0400 Subject: [PATCH] fix: use yaml lists instead of objects in release.yml (#8182) --- .github/workflows/release.yml | 49 +++++++++++++++-------------------- 1 file changed, 21 insertions(+), 28 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9bb9f4d935d2..470b918b2951 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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