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