Skip to content

Commit

Permalink
ci: Fix Docker publish run fail on auto (#496)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
BYK committed Aug 14, 2024
1 parent 6bb3058 commit 86055cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down

0 comments on commit 86055cc

Please sign in to comment.