From 959e8ceab58fa617c84773b5889f6667e39aa19f Mon Sep 17 00:00:00 2001 From: Jason Hall Date: Fri, 1 Oct 2021 16:53:00 -0400 Subject: [PATCH] Attempt to fix auth error #7 changed auth from a PAT (you) to the GHA token, which seemingly only has access to push to this repo's packages. --- .github/workflows/keyless-sign.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/keyless-sign.yml b/.github/workflows/keyless-sign.yml index 94d6ec8..072b960 100644 --- a/.github/workflows/keyless-sign.yml +++ b/.github/workflows/keyless-sign.yml @@ -33,7 +33,7 @@ jobs: platforms: linux/amd64 push: true tags: | - ghcr.io/lukehinds/cosign-oidc:${{ github.sha }} + ghcr.io/lukehinds/testoidc/cosign-oidc:${{ github.sha }} - name: Sign image run: | - cosign sign ghcr.io/lukehinds/cosign-oidc:${{ github.sha }} + cosign sign ghcr.io/lukehinds/testoidc/cosign-oidc:${{ github.sha }}