Skip to main content

Github Action

Checkout

- name: Checkout
uses: actions/checkout@v2

Upload Artifact

- name: Temporarily save Docker image
uses: actions/upload-artifact@v2
with:
name: docker-artifact
path: path/to/artifacts
retention-days: 1

Download Artifact

- name: Retrieve saved Docker image
uses: actions/download-artifact@v2
with:
name: docker-artifact
path: path/to/artifacts