mirror of
https://github.com/lukechilds/dockerpi.git
synced 2026-01-23 10:16:42 +00:00
Improve bash readability
This commit is contained in:
parent
fe187f24f8
commit
785cfcd23e
1 changed files with 3 additions and 1 deletions
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
|
|
@ -18,7 +18,9 @@ jobs:
|
|||
run: |
|
||||
mkdir -p images
|
||||
images=$(docker images lukechilds/dockerpi --format "{{.Repository}}:{{.Tag}}")
|
||||
for image in $images; do docker save $image | gzip > "images/$(echo $image | tr '/' '-').tgz"; done
|
||||
for image in $images; do
|
||||
docker save $image | gzip > "images/$(echo $image | tr '/' '-').tgz"
|
||||
done
|
||||
- name: Print sha256sum of built image
|
||||
run: sha256sum images/*
|
||||
- name: Upload image tarballs
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue