From c317c3c5935e2ee5d12cb783d606b3a81aa0977a Mon Sep 17 00:00:00 2001 From: Fabio Seel Date: Wed, 16 Oct 2024 16:41:25 +0200 Subject: [PATCH] working, testing more concise syntax --- .github/workflows/container_build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/container_build.yml b/.github/workflows/container_build.yml index 159f982..488f24d 100644 --- a/.github/workflows/container_build.yml +++ b/.github/workflows/container_build.yml @@ -53,12 +53,12 @@ jobs: fi - name: Test input TRUE - if: ${{steps.setup.outputs.deploy}} + if: ${{steps.setup.outputs.deploy==true}} run: echo "yes" - name: Test input FALSE - if: ${{! steps.setup.outputs.deploy}} + if: ${{steps.setup.outputs.deploy==false}} run: echo "no"