Skip to content

Commit abd9be1

Browse files
committed
Try to remove all images
1 parent ad50066 commit abd9be1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/image.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
--platform linux/amd64,linux/arm/v7,linux/arm64 \
4747
-f Dockerfile.devel .
4848
- name: Clean up dangling images
49-
run: docker image prune -f
49+
run: docker image prune -f -a
5050
- name: tag and push release image
5151
if: github.event_name == 'release'
5252
run: |
@@ -55,15 +55,15 @@ jobs:
5555
--tag ghcr.io/gramps-project/grampsweb:latest \
5656
--platform linux/amd64,linux/arm/v7,linux/arm64 .
5757
- name: Clean up dangling images
58-
run: docker image prune -f
58+
run: docker image prune -f -a
5959
- name: tag and push devel nginx image
6060
run: |
6161
docker build --push \
6262
--tag ghcr.io/gramps-project/grampsjs:latest-devel \
6363
--platform linux/amd64,linux/arm/v7,linux/arm64 \
6464
-f Dockerfile.nginx .
6565
- name: Clean up dangling images
66-
run: docker image prune -f
66+
run: docker image prune -f -a
6767
- name: tag and push release nginx image
6868
if: github.event_name == 'release'
6969
run: |

0 commit comments

Comments
 (0)