mirror of
https://github.com/ansible-collections/community.docker.git
synced 2026-04-04 18:48:56 +00:00
Use podman manifest push instead of podman push.
This commit is contained in:
parent
a54353e2d6
commit
639c2391e8
4
.github/workflows/docker-images.yml
vendored
4
.github/workflows/docker-images.yml
vendored
@ -77,11 +77,11 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
IMAGE: ${{ matrix.name }}:${{ matrix.tag }}
|
IMAGE: ${{ matrix.name }}:${{ matrix.tag }}
|
||||||
run: >-
|
run: >-
|
||||||
podman push "${IMAGE}" "${CONTAINER_REGISTRY}/${IMAGE}" --all --tls-verify=true --creds=${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}
|
podman manifest push --all "${IMAGE}" "${CONTAINER_REGISTRY}/${IMAGE}" --tls-verify=true --creds=${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
- name: Publish container image ${{ env.CONTAINER_REGISTRY }}/${{ matrix.name }}:latest
|
- name: Publish container image ${{ env.CONTAINER_REGISTRY }}/${{ matrix.name }}:latest
|
||||||
if: github.event_name != 'pull_request' && matrix.tag-as-latest && matrix.tag != 'latest'
|
if: github.event_name != 'pull_request' && matrix.tag-as-latest && matrix.tag != 'latest'
|
||||||
env:
|
env:
|
||||||
IMAGE: ${{ matrix.name }}:latest
|
IMAGE: ${{ matrix.name }}:latest
|
||||||
run: >-
|
run: >-
|
||||||
podman push "${IMAGE}" "${CONTAINER_REGISTRY}/${IMAGE}" --all --tls-verify=true --creds=${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}
|
podman manifest push --all "${IMAGE}" "${CONTAINER_REGISTRY}/${IMAGE}" --tls-verify=true --creds=${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user