From dd3b440f8d0d2e595b8f3bc4f0524e88e1127d45 Mon Sep 17 00:00:00 2001 From: Jens L Date: Wed, 28 Feb 2024 15:25:29 +0100 Subject: [PATCH] ci: fix missing DOCKER_USERNAME secret (#8730) Signed-off-by: Jens Langhammer --- .github/workflows/ci-main.yml | 4 ++++ .github/workflows/ci-outpost.yml | 2 ++ .github/workflows/release-publish.yml | 6 ++++++ .github/workflows/release-tag.yml | 2 ++ 4 files changed, 14 insertions(+) diff --git a/.github/workflows/ci-main.yml b/.github/workflows/ci-main.yml index c4a2fe3d95..557d13ec14 100644 --- a/.github/workflows/ci-main.yml +++ b/.github/workflows/ci-main.yml @@ -227,6 +227,8 @@ jobs: - name: prepare variables uses: ./.github/actions/docker-push-variables id: ev + env: + DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} with: image-name: ghcr.io/goauthentik/dev-server image-arch: ${{ matrix.arch }} @@ -269,6 +271,8 @@ jobs: - name: prepare variables uses: ./.github/actions/docker-push-variables id: ev + env: + DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} with: image-name: ghcr.io/goauthentik/dev-server - name: Comment on PR diff --git a/.github/workflows/ci-outpost.yml b/.github/workflows/ci-outpost.yml index 15c3451048..a66f0cee72 100644 --- a/.github/workflows/ci-outpost.yml +++ b/.github/workflows/ci-outpost.yml @@ -82,6 +82,8 @@ jobs: - name: prepare variables uses: ./.github/actions/docker-push-variables id: ev + env: + DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} with: image-name: ghcr.io/goauthentik/dev-${{ matrix.type }} - name: Login to Container Registry diff --git a/.github/workflows/release-publish.yml b/.github/workflows/release-publish.yml index 909592c9c7..db5fdae5ce 100644 --- a/.github/workflows/release-publish.yml +++ b/.github/workflows/release-publish.yml @@ -20,6 +20,8 @@ jobs: - name: prepare variables uses: ./.github/actions/docker-push-variables id: ev + env: + DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} with: image-name: ghcr.io/goauthentik/server,beryju/authentik - name: Docker Login Registry @@ -72,6 +74,8 @@ jobs: - name: prepare variables uses: ./.github/actions/docker-push-variables id: ev + env: + DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} with: image-name: ghcr.io/goauthentik/${{ matrix.type }},beryju/authentik-${{ matrix.type }} - name: make empty clients @@ -168,6 +172,8 @@ jobs: - name: prepare variables uses: ./.github/actions/docker-push-variables id: ev + env: + DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} with: image-name: ghcr.io/goauthentik/server - name: Get static files from docker image diff --git a/.github/workflows/release-tag.yml b/.github/workflows/release-tag.yml index 9f3a280851..eb69717f07 100644 --- a/.github/workflows/release-tag.yml +++ b/.github/workflows/release-tag.yml @@ -32,6 +32,8 @@ jobs: - name: prepare variables uses: ./.github/actions/docker-push-variables id: ev + env: + DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} with: image-name: ghcr.io/goauthentik/server - name: Create Release