ci: remove push redundant calls
This commit is contained in:
parent
e96e611d43
commit
d3cb29cfbb
1 changed files with 7 additions and 6 deletions
|
@ -33,12 +33,13 @@ jobs:
|
|||
- name: Push tagged images to registry
|
||||
if: ${{ github.event_name == 'push' }}
|
||||
run: |
|
||||
podman push localhost/sesame/caddy:latest ${{ vars.REGISTRY_ENDPOINT }}/sesame/caddy:latest
|
||||
podman push localhost/sesame/caddy:latest ${{ vars.REGISTRY_ENDPOINT }}/sesame/caddy:${{ steps.image-metadata.outputs.image-tag }}
|
||||
podman push localhost/sesame/caddy:latest ${{ vars.REGISTRY_ENDPOINT }}/sesame/caddy:${{ github.ref_name }}
|
||||
podman push localhost/sesame/promtail:latest ${{ vars.REGISTRY_ENDPOINT }}/sesame/promtail:latest
|
||||
podman push localhost/sesame/promtail:latest ${{ vars.REGISTRY_ENDPOINT }}/sesame/promtail:${{ steps.image-metadata.outputs.image-tag }}
|
||||
podman push localhost/sesame/promtail:latest ${{ vars.REGISTRY_ENDPOINT }}/sesame/promtail:${{ github.ref_name }}
|
||||
for image in $(podman image ls --format {{.Repository }} | grep localhost/sesame)
|
||||
do
|
||||
for tag in latest "${{ steps.image-metadata.outputs.image-tag }}" "${{ github.ref_name }}"
|
||||
do
|
||||
podman push "$image:latest" "${{ vars.REGISTRY_ENDPOINT }}/$image:$tag"
|
||||
done
|
||||
done
|
||||
post-run:
|
||||
runs-on: imagefactory-latest
|
||||
needs: [build]
|
||||
|
|
Loading…
Reference in a new issue