Skip to content

Commit

Permalink
actions: add new arm64 manifests
Browse files Browse the repository at this point in the history
problem: new docker images are not pushed with combined manifests
solution: push manifests in github actions
  • Loading branch information
trws committed Jul 20, 2024
1 parent c7b2a44 commit c0965c3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -254,4 +254,8 @@ jobs:
echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin
docker manifest create fluxrm/flux-core:bookworm fluxrm/flux-core:bookworm-amd64 fluxrm/flux-core:bookworm-386 fluxrm/flux-core:bookworm-arm64
docker manifest push fluxrm/flux-core:bookworm
for d in el9 noble fedora40 ; do
docker manifest create fluxrm/flux-core:$d fluxrm/flux-core:$d-amd64 fluxrm/flux-core:$d-arm64
docker manifest push fluxrm/flux-core:$d
done

0 comments on commit c0965c3

Please sign in to comment.