..
Some checks failed
Create OCI image(s) / Build and push images (push) Failing after 1m51s

This commit is contained in:
Chris Kruining 2025-09-08 13:07:20 +02:00
parent a3066be43e
commit 12a4a85510
No known key found for this signature in database
GPG key ID: EB894A3560CCCAD2
4 changed files with 33 additions and 26 deletions

View file

@ -8,6 +8,10 @@ description: Push the `source` image to the `destination` registry
# Parameters
#=======================================================================
inputs:
registry:
required: true
description: The registry to authen
source:
required: true
description: The source image to be pushed
@ -25,4 +29,10 @@ runs:
- name: Authenticate
run: |
echo "Authenticate"
echo "pushing image '${{ inputs.source }}' to '${{ inputs.destination }}'"
echo "pushing image '${{ inputs.source }}' to '${{ inputs.destination }}'"
echo "${{ forge.token }}" | podman login --username '${{ forge.actor }}' --password-stdin
- name: Push
run: |
podman push '${{ inputs.source }}' '${{ inputs.destination }}'