Github action for downloading a docker image artifact. It downloads image artifact uploaded by docker-image-artifact-upload and loads into local docker daemon for use in a job.
Required Image name that is to be downloaded.
Path in node where docker image archive is downloaded. Eg. /tmp/foo_latest
for image foo:latest
.
...
jobs:
download_image:
- name: Checkout project
uses: actions/checkout@v2
- name: Download image
uses: ishworkh/docker-image-artifact-download@v1
with:
image: "test_image:latest"
This library is under the MIT license.