From bb81486d83c58e1807901f73c41edacc7df91ca6 Mon Sep 17 00:00:00 2001 From: Jacob Heider Date: Thu, 5 Jan 2023 19:16:57 -0500 Subject: [PATCH] last one, i hope --- .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 6e9c8bcf..203e89cf 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -20,13 +20,13 @@ jobs: bottle-pr: needs: [cd] #FIXME: will fail (harmlessly) on non-merge/non-new-version runs, and won't work on 3rd-party PRs - if: needs.cd.outputs.HAS_SECRETS + if: ${{ needs.cd.outputs.HAS_SECRETS }} uses: ./.github/workflows/bottle.yml secrets: inherit bottle-standalone: runs-on: ubuntu-latest needs: [cd] - if: ! needs.cd.outputs.HAS_SECRETS + if: ${{ ! needs.cd.outputs.HAS_SECRETS }} steps: - uses: actions/checkout@v3 - uses: technote-space/get-diff-action@v6