Skip to content
This repository has been archived by the owner on Apr 16, 2023. It is now read-only.

Commit

Permalink
Improved docker push
Browse files Browse the repository at this point in the history
  • Loading branch information
Defelo committed Mar 6, 2022
1 parent 6b291a8 commit 6d9d049
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,12 @@ jobs:
set -ex
for file in docker*/*.tar.gz; do
[[ "$file" == *_linux-amd64.tar.gz ]] && continue
echo Loading $file
docker load -qi $file | cut -d' ' -f3 | grep '^ghcr.io/' | xargs -L1 docker push
done
for file in docker*/*_linux-amd64.tar.gz; do
echo Loading $file
docker load -qi $file | cut -d' ' -f3 | grep '^ghcr.io/' | xargs -L1 docker push
done
Expand Down

0 comments on commit 6d9d049

Please sign in to comment.