From fdbf9ffedcd4348f92f34c4a82a54289c09f4e3d Mon Sep 17 00:00:00 2001 From: Marc 'risson' Schmitt Date: Thu, 12 Feb 2026 13:44:55 +0100 Subject: [PATCH] ci: fix release testing (cherry-pick #20207 to version-2026.2) (#20224) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Simonyi Gergő <28359278+gergosimonyi@users.noreply.github.com> fix release testing (#20207) --- .github/workflows/release-publish.yml | 12 ++++++------ scripts/test_docker.sh | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/release-publish.yml b/.github/workflows/release-publish.yml index c8c7eda15e..85468882c2 100644 --- a/.github/workflows/release-publish.yml +++ b/.github/workflows/release-publish.yml @@ -210,12 +210,12 @@ jobs: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v5 - name: Run test suite in final docker images run: | - echo "PG_PASS=$(openssl rand 32 | base64 -w 0)" >> .env - echo "AUTHENTIK_SECRET_KEY=$(openssl rand 32 | base64 -w 0)" >> .env - docker compose pull -q - docker compose up --no-start - docker compose start postgresql - docker compose run -u root server test-all + echo "PG_PASS=$(openssl rand 32 | base64 -w 0)" >> lifecycle/container/.env + echo "AUTHENTIK_SECRET_KEY=$(openssl rand 32 | base64 -w 0)" >> lifecycle/container/.env + docker compose -f lifecycle/container/compose.yml pull -q + docker compose -f lifecycle/container/compose.yml up --no-start + docker compose -f lifecycle/container/compose.yml start postgresql + docker compose -f lifecycle/container/compose.yml run -u root server test-all sentry-release: needs: - build-server diff --git a/scripts/test_docker.sh b/scripts/test_docker.sh index 9a309f4efa..408de5b9ce 100755 --- a/scripts/test_docker.sh +++ b/scripts/test_docker.sh @@ -2,7 +2,7 @@ set -e -x -o pipefail hash="$(git rev-parse HEAD || openssl rand -base64 36 | sha256sum)" -AUTHENTIK_IMAGE="xghcr.io/goauthentik/server" +AUTHENTIK_IMAGE="authentik.invalid/goauthentik/server" AUTHENTIK_TAG="$(echo "$hash" | cut -c1-15)" if [ -f lifecycle/container/.env ]; then