From 75d73cbd4e1757467232f563ae1daad366b855b6 Mon Sep 17 00:00:00 2001 From: CrazyMax Date: Tue, 13 Oct 2020 21:22:33 +0200 Subject: [PATCH] Add example to upload image as an artifact Signed-off-by: CrazyMax --- README.md | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/README.md b/README.md index 66440c0..bd966ed 100644 --- a/README.md +++ b/README.md @@ -36,6 +36,7 @@ ___ * [Advanced usage](#advanced-usage) * [Push to multi-registries](#push-to-multi-registries) * [Cache to registry](#push-to-multi-registries) + * [Upload image as an artifact](#upload-image-as-an-artifact) * [Local registry](#local-registry) * [Leverage GitHub cache](#leverage-github-cache) * [Complete workflow](#complete-workflow) @@ -333,6 +334,52 @@ You can import/export cache from a cache manifest or (special) image configurati ``` +### Upload image as an artifact + +You can export the result image or manifest list as an [OCI image layout](https://github.com/opencontainers/image-spec/blob/master/image-layout.md) +tarball through [actions/upload-artifact](https://github.com/actions/upload-artifact/) action: + +
+ Show workflow + + ```yaml + name: ci + + on: + push: + branches: master + + jobs: + upload-artifact: + runs-on: ubuntu-latest + steps: + - + name: Checkout + uses: actions/checkout@v2 + - + name: Set up QEMU + uses: docker/setup-qemu-action@v1 + - + name: Set up Docker Buildx + uses: docker/setup-buildx-action@v1 + - + name: Build and export + uses: docker/build-push-action@v2 + with: + context: . + file: ./Dockerfile + platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/ppc64le,linux/s390x + tags: name/app:latest + outputs: type=oci,dest=/tmp/image.tar + - + name: Upload artifact + uses: actions/upload-artifact@v2 + with: + name: app + path: /tmp/image.tar + ``` +
+ ### Local registry For testing purposes you may need to create a [local registry](https://hub.docker.com/_/registry) to push images into: