Skip to content

Commit

Permalink
ci(release-container): add --all to buildah manifest push
Browse files Browse the repository at this point in the history
The `--all` option is not true by default for `buildah manifest push`
like it is for `podman manifest push`. `--all` makes Buildah push the
images in addition to the manifest.

Fixes: #82
Signed-off-by: Paul Nettleton <k9@k9withabone.dev>
  • Loading branch information
k9withabone committed May 26, 2024
1 parent 06825f7 commit 2823bb3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ jobs:
USERNAME: ${{ github.actor }}
PASSWORD: ${{ secrets.GITHUB_TOKEN }}
run: |
buildah manifest push "${MANIFEST}:latest" \
buildah manifest push "${MANIFEST}:latest" --all \
--creds "${USERNAME}:${PASSWORD}" \
"docker://ghcr.io/containers/podlet:${GITHUB_REF_NAME}" && \
buildah manifest push "${MANIFEST}:latest" \
buildah manifest push "${MANIFEST}:latest" --all \
--creds "${USERNAME}:${PASSWORD}" \
"docker://ghcr.io/containers/podlet:latest"

0 comments on commit 2823bb3

Please sign in to comment.