From 5925c8cce19f5e53870ffb625c953f431d27de0e Mon Sep 17 00:00:00 2001 From: "C.Lee Taylor" Date: Wed, 27 Jul 2022 16:17:22 +0200 Subject: [PATCH] Fix Upload --- .github/workflows/matrix-test.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/matrix-test.yml b/.github/workflows/matrix-test.yml index 087fa21..97b7cc8 100644 --- a/.github/workflows/matrix-test.yml +++ b/.github/workflows/matrix-test.yml @@ -79,8 +79,8 @@ jobs: build: name: Building ${{ matrix.builds.name }} on ${{ matrix.builds.runs-on }} - #needs: [ matrix-prep, create-release ] - needs: matrix-prep + needs: [ matrix-prep, create-release ] + #needs: matrix-prep strategy: fail-fast: false matrix: ${{ fromJson(needs.matrix-prep.outputs.matrix) }} @@ -121,12 +121,12 @@ jobs: name: ${{ matrix.builds.target }}-cross-compile-sample path: target/${{ matrix.builds.target }}/release/cross-compile-sample - - name: Upload release archive - uses: softprops/action-gh-release@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - files: | - LICENSE - README.md - target/${{ matrix.builds.target }}/release/cross-compile-sample + - name: Upload release archive + uses: softprops/action-gh-release@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + files: | + LICENSE + README.md + target/${{ matrix.builds.target }}/release/cross-compile-sample