From 23130a485b089b4bb1e3710946034ebc90b00072 Mon Sep 17 00:00:00 2001 From: Wylie Conlon Date: Tue, 19 Oct 2021 17:02:11 -0400 Subject: [PATCH] docs: Fix examples in README (#10) Since the example uses `steps.extract.outputs`, it needs to assign `id: extract` to the step first. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index caeeca4..33f3e1d 100644 --- a/README.md +++ b/README.md @@ -48,6 +48,7 @@ jobs: repository: my-example-image tags: latest - uses: shrink/actions-docker-extract@v1 + id: extract with: image: my-example-image path: /app/. @@ -76,6 +77,7 @@ jobs: username: ${{ github.repository_owner }} password: ${{ secrets.GHCR_PAT }} - uses: shrink/actions-docker-extract@v1 + id: extract with: image: ghcr.io/${{ github.repository }}:latest path: /app/.