From 2a5a76e369a72372980cbef9b7d1bd69ec3440de Mon Sep 17 00:00:00 2001 From: Jens L Date: Wed, 10 Jul 2024 14:18:00 +0200 Subject: [PATCH] ci: fix PR comment k8s snippet (#10433) Signed-off-by: Jens Langhammer --- .github/actions/comment-pr-instructions/action.yml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/actions/comment-pr-instructions/action.yml b/.github/actions/comment-pr-instructions/action.yml index f74a99fafb..47f7cc212e 100644 --- a/.github/actions/comment-pr-instructions/action.yml +++ b/.github/actions/comment-pr-instructions/action.yml @@ -54,9 +54,10 @@ runs: authentik: outposts: container_image_base: ghcr.io/goauthentik/dev-%(type)s:gh-%(build_hash)s - image: - repository: ghcr.io/goauthentik/dev-server - tag: ${{ inputs.tag }} + global: + image: + repository: ghcr.io/goauthentik/dev-server + tag: ${{ inputs.tag }} ``` For arm64, use these values: @@ -65,9 +66,10 @@ runs: authentik: outposts: container_image_base: ghcr.io/goauthentik/dev-%(type)s:gh-%(build_hash)s - image: - repository: ghcr.io/goauthentik/dev-server - tag: ${{ inputs.tag }}-arm64 + global: + image: + repository: ghcr.io/goauthentik/dev-server + tag: ${{ inputs.tag }}-arm64 ``` Afterwards, run the upgrade commands from the latest release notes.