From d9c0f9ef9e9e5de32fccf90c37f24cc8253eb2e9 Mon Sep 17 00:00:00 2001 From: Andreas Heinrich Date: Mon, 8 Jul 2024 15:16:32 +0200 Subject: [PATCH] fix str Signed-off-by: Andreas Heinrich --- .github/workflows/deploy-single-docker-image.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-single-docker-image.yml b/.github/workflows/deploy-single-docker-image.yml index bb7e324..e686406 100644 --- a/.github/workflows/deploy-single-docker-image.yml +++ b/.github/workflows/deploy-single-docker-image.yml @@ -58,7 +58,7 @@ on: jobs: check: - if: ${{ inputs.force_rebuild == 'false' }} + if: ${{ inputs.force_rebuild == false }} name: Check for changes outputs: rebuild: ${{ steps.set-outputs.outputs.rebuild }} @@ -142,7 +142,7 @@ jobs: build-and-push: name: Build and push needs: check - if: ${{ needs.check.outputs.rebuild == 'true' || inputs.force_rebuild == 'true' }} + if: ${{ needs.check.outputs.rebuild == 'true' || inputs.force_rebuild == true }} runs-on: ubuntu-22.04 steps: - name: Checkout Dockerfile