Skip to content

Commit

Permalink
Try to limit disk space usage on workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidMStraub committed Feb 9, 2024
1 parent 87dc350 commit 20fd32c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,16 @@ jobs:
--tag ghcr.io/gramps-project/grampsweb:${{ github.event.release.tag_name }} \
--tag ghcr.io/gramps-project/grampsweb:latest \
--platform linux/amd64,linux/arm/v7,linux/arm64 .
- name: Clean up dangling images
run: docker image prune -f
- name: tag and push devel nginx image
run: |
docker build --push \
--tag ghcr.io/gramps-project/grampsjs:latest-devel \
--platform linux/amd64,linux/arm/v7,linux/arm64 \
-f Dockerfile.nginx .
- name: Clean up dangling images
run: docker image prune -f
- name: tag and push release nginx image
if: github.event_name == 'release'
run: |
Expand Down

0 comments on commit 20fd32c

Please sign in to comment.