From dade3052cf0ac6e1d844507e159fc8d045e5b1de Mon Sep 17 00:00:00 2001 From: kopackiw <26244440+kopackiw@users.noreply.github.com> Date: Tue, 8 Nov 2022 15:18:53 +0100 Subject: [PATCH] Change "steps" to "needs" in the `release` if expression --- .github/workflows/cd.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index b27d92ec3..aaeadb6d2 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -52,7 +52,7 @@ jobs: - { target: aarch64-apple-darwin, os: macOS-latest } - { target: x86_64-pc-windows-msvc, os: windows-latest } - runs-on: ${{matrix.os}} + runs-on: ${{ matrix.os }} steps: - name: Checkout uses: actions/checkout@v3 @@ -91,7 +91,7 @@ jobs: release: name: Release - if: ${{ steps.calculate-release-flags.outputs.release-detected == 'true' }} + if: ${{ needs.calculate-release-flags.outputs.release-detected == 'true' }} needs: binaries runs-on: ubuntu-latest steps: