allow insecure registry
Some checks failed
Reload Act Runner Stack to clear cache for workflows / diff (push) Successful in 7s
Reload Act Runner Stack to clear cache for workflows / deploy-gitainer (push) Failing after 4s
Reload Act Runner Stack to clear cache for workflows / notify (push) Has been skipped

This commit is contained in:
Martin Dimitrov 2026-03-06 13:39:53 -08:00
parent 411a1524ab
commit edaf384a7f
2 changed files with 10 additions and 1 deletions

View File

@ -17,6 +17,13 @@ inputs:
description: 'Build context path'
required: false
default: '.'
push:
description: 'Whether to push the image'
required: false
default: 'true'
outputs:
description: 'Custom outputs configuration'
required: false
runs:
using: "composite"
@ -41,6 +48,7 @@ runs:
context: ${{ inputs.context }}
file: ${{ inputs.file }}
platforms: ${{ inputs.platforms }}
push: true
push: ${{ inputs.outputs == '' && inputs.push == 'true' || false }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
outputs: ${{ inputs.outputs }}

View File

@ -45,3 +45,4 @@ jobs:
file: ${{ inputs.file }}
platforms: ${{ inputs.platforms }}
context: .
outputs: type=image,registry.insecure=true,push=true