From 3cdb709525c47f4beac3103b1d8ceb9f1e2375a3 Mon Sep 17 00:00:00 2001 From: Sam Clark <1059176+samhclark@users.noreply.github.com> Date: Sat, 21 Sep 2024 20:20:53 -0500 Subject: [PATCH] Fix weird nesting with registry name --- .github/workflows/build.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 0ede9e6..1ece876 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -36,7 +36,7 @@ jobs: with: containerfiles: | ./Containerfile - image: ghcr.io/samhclark/custom-silverblue + image: custom-silverblue tags: | ${{ github.sha }} 40 @@ -78,7 +78,7 @@ jobs: # SIGSTORE_ID_TOKEN: ${{ GITHUB_TOKEN }} # This step uses the identity token to provision an ephemeral certificate # against the sigstore community Fulcio instance. - run: echo "${TAGS}" | xargs -I {} cosign sign --yes ${IMAGE}:{}@${DIGEST} + run: echo "${TAGS}" | xargs -I {} cosign sign --yes ghcr.io/${{ github.repository_owner }}/${IMAGE}:{}@${DIGEST} - name: Echo outputs if: github.event_name != 'pull_request'