From a0700e7399004991e0b211550e11272a0e326e1c Mon Sep 17 00:00:00 2001 From: Andrei Kvapil Date: Fri, 30 May 2025 16:20:34 +0200 Subject: [PATCH] [tests] Fix concurrency for docker loing action Signed-off-by: Andrei Kvapil --- .github/workflows/pull-requests.yaml | 4 ++++ .github/workflows/tags.yaml | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/.github/workflows/pull-requests.yaml b/.github/workflows/pull-requests.yaml index ca93763a..5210c1fd 100644 --- a/.github/workflows/pull-requests.yaml +++ b/.github/workflows/pull-requests.yaml @@ -33,9 +33,13 @@ jobs: username: ${{ github.repository_owner }} password: ${{ secrets.GITHUB_TOKEN }} registry: ghcr.io + env: + DOCKER_CONFIG: ${{ runner.temp }}/.docker - name: Build run: make build + env: + DOCKER_CONFIG: ${{ runner.temp }}/.docker - name: Build Talos image run: make -C packages/core/installer talos-nocloud diff --git a/.github/workflows/tags.yaml b/.github/workflows/tags.yaml index 66376397..4590034a 100644 --- a/.github/workflows/tags.yaml +++ b/.github/workflows/tags.yaml @@ -99,11 +99,15 @@ jobs: username: ${{ github.repository_owner }} password: ${{ secrets.GITHUB_TOKEN }} registry: ghcr.io + env: + DOCKER_CONFIG: ${{ runner.temp }}/.docker # Build project artifacts - name: Build if: steps.check_release.outputs.skip == 'false' run: make build + env: + DOCKER_CONFIG: ${{ runner.temp }}/.docker # Commit built artifacts - name: Commit release artifacts