Skip to content

Commit

Permalink
Also pull the image and add it as an artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanOltmann committed Dec 17, 2024
1 parent 7d3d718 commit a8955f5
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,14 @@ jobs:
context: .
push: true
tags: ghcr.io/ashampoo/imageproxy:latest

- name: Save Docker image as a tar archive
run: |
docker pull ghcr.io/ashampoo/imageproxy:latest
docker save -o imageproxy-latest.tar ghcr.io/ashampoo/imageproxy:latest
- name: Upload Docker image as an artifact
uses: actions/upload-artifact@v3
with:
name: docker-image-tar
path: imageproxy-latest.tar

0 comments on commit a8955f5

Please sign in to comment.