From fe41d1a54ce6db42dddcd9541a351e1e2484965f Mon Sep 17 00:00:00 2001 From: Om Mishra <32200996+mishraomp@users.noreply.github.com> Date: Wed, 25 Oct 2023 17:45:59 -0700 Subject: [PATCH] chore: updated docs for the new addition of returning image digests. (#37) --- README.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a849977..c1f90c2 100644 --- a/README.md +++ b/README.md @@ -196,14 +196,17 @@ jobs: # Output -If a build has been generated this action will output `true`. +The build will return image digests as output. ```yaml - id: meaningful_id_name - uses: bcgov-nr/action-conditional-container-builder@v1.0.0 + uses: bcgov-nr/action-conditional-container-builder@v2.0.0 ... -- if: steps.meaningful_id_name.outputs.build == 'true' +- id: deploy_with_digest + name: Deploy with digest + with: + digest: ${{ steps.meaningful_id_name.outputs.digest }} ... ```