From 60bbdf406de746f419ed134ea9b7e7aee954018b Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Trystram Date: Tue, 6 Jun 2023 09:35:48 +0200 Subject: [PATCH] Update action example for keyless signing as xarg is not required (#132) Fixes #131 Signed-off-by: jbtrystram --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d6acfd2..5243810 100644 --- a/README.md +++ b/README.md @@ -140,7 +140,7 @@ jobs: env: DIGEST: ${{ steps.build-and-push.outputs.digest }} TAGS: ${{ steps.docker_meta.outputs.tags }} - run: echo "${TAGS}" | xargs -I {} cosign sign --yes {}@${DIGEST} + run: cosign sign --yes ${TAGS}@${DIGEST} ``` ### Optional Inputs