From 50bad77987490298cbc9379e5675be7e2e8c3fff Mon Sep 17 00:00:00 2001 From: Artyom Pervukhin Date: Wed, 27 Nov 2024 09:37:31 +0100 Subject: [PATCH] Point forked action to org-local ghcr.io repository While here, replace action context var with explicit value, because docker repository name must be lowercase. --- .github/workflows/publish.yml | 4 ++-- action.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 4773a18..3953029 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -32,12 +32,12 @@ jobs: linux/arm64 linux/amd64 tags: | - ghcr.io/${{ github.repository }}:latest + ghcr.io/doist/update-cloudformation-stack:latest outputs: type=image,oci-mediatypes=true,compression=zstd,compression-level=6,force-compression=true cache-from: type=gha cache-to: type=gha,mode=max - uses: actions/attest-build-provenance@v1 with: - subject-name: ghcr.io/${{ github.repository }} + subject-name: ghcr.io/doist/update-cloudformation-stack subject-digest: ${{ steps.push.outputs.digest }} push-to-registry: true diff --git a/action.yml b/action.yml index bbdb62d..0bfc1d3 100644 --- a/action.yml +++ b/action.yml @@ -14,6 +14,6 @@ inputs: runs: using: docker - image: docker://ghcr.io/artyom/update-cloudformation-stack:latest + image: docker://ghcr.io/doist/update-cloudformation-stack:latest args: - '-stack=${{ inputs.stack }}'