Update docker/push/action.yaml

This commit is contained in:
Zakary Timson 2024-02-06 13:51:33 +00:00
parent 723a0f67dd
commit c1fa83d47c

View File

@ -25,6 +25,11 @@ inputs:
type: string type: string
required: false required: false
default: ${{github.ref_name}} default: ${{github.ref_name}}
from:
type: string
required: false
description: Re-tag an existing image
default:
runs: runs:
using: composite using: composite
@ -32,6 +37,11 @@ runs:
- name: Format Registry URL - name: Format Registry URL
run: echo "URL=$(echo ${{github.server_url}} | sed s%http://%% | sed s%https://%% )" >> $GITHUB_ENV run: echo "URL=$(echo ${{github.server_url}} | sed s%http://%% | sed s%https://%% )" >> $GITHUB_ENV
shell: sh shell: sh
- name: Re-Tag
run: [ -n ${{inputs.from}} ] && docker tag ${{inputs.from}} "${{env.URL}}/${{inputs.name}}:${{inputs.tag}}"
shell: sh
- name: Docker Login - name: Docker Login
uses: docker://docker uses: docker://docker
with: with: