33A GitHub Action for extracting files from a Docker Image.
44
55``` yaml
6- - uses : shrink/actions-docker-extract@v3
6+ - uses : shrink/actions-docker-extract@v4
77 with :
88 image : " ghost:alpine"
99 path : " /var/lib/ghost/current/core/built/assets/."
1010` ` `
1111
12- :warning: Due to a breaking change in v3 of GitHub's actions/upload-artifact, a
13- low-impact breaking change has been made to v3.0.1 of this action. Please
14- see [issues#28](https://github.com/shrink/actions-docker-extract/issues/28) for
15- context and support.
16-
1712## Inputs
1813
1914| ID | Description | Required | Examples |
5247 with:
5348 tags: my-example-image:latest
5449 load: true
55- - uses: shrink/actions-docker-extract@v3
50+ - uses: shrink/actions-docker-extract@v4
5651 id: extract
5752 with:
5853 image: my-example-image:latest
8176 registry: "ghcr.io"
8277 username: "${{ github.actor }}"
8378 password: "${{ secrets.GITHUB_TOKEN }}"
84- - uses: shrink/actions-docker-extract@v3
79+ - uses: shrink/actions-docker-extract@v4
8580 id: extract
8681 with:
8782 image: ghcr.io/${{ github.repository }}:latest
@@ -100,8 +95,8 @@ tag. Any reference to this Action in a Workflow must use a [tag][tags] (mutable)
10095or the commit hash of a tag (immutable).
10196
10297` ` ` yaml
103- ✅ uses: shrink/actions-docker-extract@v3
104- ✅ uses: shrink/actions-docker-extract@v3 .0.0
98+ ✅ uses: shrink/actions-docker-extract@v4
99+ ✅ uses: shrink/actions-docker-extract@v4 .0.0
105100✅ uses: shrink/actions-docker-extract@40400b42f4f8b663c647f535e2c6674658e39fc6
106101❌ uses: shrink/actions-docker-extract@main
107102` ` `
0 commit comments