From f7b366d446ce7bc38f42067ea98dc461ed836a01 Mon Sep 17 00:00:00 2001 From: Burak Yigit Kaya Date: Wed, 14 Aug 2024 14:42:00 +0100 Subject: [PATCH] ci: Fix Docker publish run fail on auto As earlier fixes, since `inputs` context is not available, it comes out as empty which violates the schema of the action we are using as it expects a bool. This patch fixes the issue. --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index ee7f2718..5477a7ef 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -85,7 +85,7 @@ jobs: with: context: . cache-from: type=gha,scope=prod - no-cache: ${{ inputs.nocache }} + no-cache: ${{ inputs.nocache == true }} platforms: linux/amd64,linux/arm64 push: true tags: |