From f271983aeb18f3c6b49dc94cf412b7671625ae21 Mon Sep 17 00:00:00 2001 From: stevenhorsman Date: Mon, 20 May 2024 13:27:16 +0100 Subject: [PATCH] gha: release: Set inherit secrets on tarball builds Now we have updated the release builds to push artefacts to our registry for the release, so we can cache the images, we need to set `secrets: inherit` for all architecture's tarball builds so that we can log into quay.io and ghcr in those steps Signed-off-by: stevenhorsman --- .github/workflows/release-amd64.yaml | 1 + .github/workflows/release-arm64.yaml | 1 + .github/workflows/release-ppc64le.yaml | 1 + 3 files changed, 3 insertions(+) diff --git a/.github/workflows/release-amd64.yaml b/.github/workflows/release-amd64.yaml index b48fada645..a642e1782f 100644 --- a/.github/workflows/release-amd64.yaml +++ b/.github/workflows/release-amd64.yaml @@ -12,6 +12,7 @@ jobs: with: push-to-registry: yes stage: release + secrets: inherit kata-deploy: needs: build-kata-static-tarball-amd64 diff --git a/.github/workflows/release-arm64.yaml b/.github/workflows/release-arm64.yaml index e039ee04e9..5003606e1a 100644 --- a/.github/workflows/release-arm64.yaml +++ b/.github/workflows/release-arm64.yaml @@ -12,6 +12,7 @@ jobs: with: push-to-registry: yes stage: release + secrets: inherit kata-deploy: needs: build-kata-static-tarball-arm64 diff --git a/.github/workflows/release-ppc64le.yaml b/.github/workflows/release-ppc64le.yaml index 35b343179d..36f0379de5 100644 --- a/.github/workflows/release-ppc64le.yaml +++ b/.github/workflows/release-ppc64le.yaml @@ -12,6 +12,7 @@ jobs: with: push-to-registry: yes stage: release + secrets: inherit kata-deploy: needs: build-kata-static-tarball-ppc64le