We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d3d718 commit a8955f5Copy full SHA for a8955f5
.github/workflows/build.yml
@@ -29,3 +29,14 @@ jobs:
29
context: .
30
push: true
31
tags: ghcr.io/ashampoo/imageproxy:latest
32
+
33
+ - name: Save Docker image as a tar archive
34
+ run: |
35
+ docker pull ghcr.io/ashampoo/imageproxy:latest
36
+ docker save -o imageproxy-latest.tar ghcr.io/ashampoo/imageproxy:latest
37
38
+ - name: Upload Docker image as an artifact
39
+ uses: actions/upload-artifact@v3
40
+ with:
41
+ name: docker-image-tar
42
+ path: imageproxy-latest.tar
0 commit comments