Fix container build when cache is disabled (#26932)

lolsob-rspec
Renaud Chaput 2023-09-15 10:44:01 +02:00 committed by GitHub
parent 12aa7c5219
commit 3b1301eb7f
1 changed files with 2 additions and 2 deletions

View File

@ -95,5 +95,5 @@ jobs:
push: ${{ inputs.push_to_images != '' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: ${{ inputs.cache && 'type=gha' }}
cache-to: ${{ inputs.cache && 'type=gha,mode=max' }}
cache-from: ${{ inputs.cache && 'type=gha' || '' }}
cache-to: ${{ inputs.cache && 'type=gha,mode=max' || '' }}