Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
Signed-off-by: Charlie Drage <[email protected]>
  • Loading branch information
cdrage committed Jun 23, 2024
1 parent ade1b13 commit c3d382b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,10 @@ jobs:
if [ -f "$dir/Containerfile" ]; then
echo "Building and pushing $repo_name"
cd $dir
docker buildx build --platform linux/amd64,linux/arm64 \
docker build --platform linux/amd64 \
-t ghcr.io/${{ secrets.REGISTRY_USERNAME }}/${repo_name} \
--push -f Containerfile .
-f Containerfile .
docker push ghcr.io/${{ secrets.REGISTRY_USERNAME }}/${repo_name}
cd ..
else
echo "Skipping $repo_name: No Containerfile found"
Expand Down

0 comments on commit c3d382b

Please sign in to comment.