From 0aa4d65bb53499924ac11ceeba693f1275ed1f92 Mon Sep 17 00:00:00 2001 From: Wilfred Hughes Date: Tue, 5 Sep 2023 00:31:09 -0700 Subject: [PATCH] Matrix fix --- .github/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 14cddd5f1c..0cb05f63cd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -59,13 +59,13 @@ jobs: targets: ${{ matrix.target }} - name: Install cross - if: matrix.job.use_cross + if: matrix.use_cross uses: taiki-e/install-action@v2 with: tool: cross - name: Overwrite build command env variable - if: matrix.job.use_cross + if: matrix.use_cross shell: bash run: echo "BUILD_CMD=cross" >> $GITHUB_ENV @@ -74,12 +74,12 @@ jobs: run: $BUILD_CMD build --release --target ${{ matrix.target }} - name: Move cross-compiled native binary to root of checkout - if: matrix.job.use_cross != true + if: matrix.use_cross != true shell: bash run: mv target/release/difft difft - name: Move cross-compiled binary to root of checkout - if: matrix.job.use_cross + if: matrix.use_cross shell: bash run: mv target/${{ matrix.target }}/release/difft difft