From f1278557e2f01c89155455a1e2265267ccffb5c3 Mon Sep 17 00:00:00 2001 From: Ricardo Campos Date: Mon, 15 Jun 2026 14:05:04 -0300 Subject: [PATCH] fix: docker builx plugin --- .github/workflows/build-app-candidate.yml | 3 +++ .github/workflows/ci-main-frontend.yml | 2 +- .github/workflows/ci-pr-frontend.yml | 3 +++ 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-app-candidate.yml b/.github/workflows/build-app-candidate.yml index 9a7d1f5..903fd4d 100644 --- a/.github/workflows/build-app-candidate.yml +++ b/.github/workflows/build-app-candidate.yml @@ -18,6 +18,9 @@ jobs: fetch-depth: 0 ref: ${{ github.ref }} + - name: Set up Docker Buildx + run: docker buildx create --use --bootstrap + - name: Log in to Gitea Container Registry uses: docker/login-action@v3 with: diff --git a/.github/workflows/ci-main-frontend.yml b/.github/workflows/ci-main-frontend.yml index fdb8be0..d4cc9fa 100644 --- a/.github/workflows/ci-main-frontend.yml +++ b/.github/workflows/ci-main-frontend.yml @@ -44,7 +44,7 @@ jobs: echo "Generated tag: ${TAG}" - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 + run: docker buildx create --use --bootstrap - name: Log in to Gitea Container Registry uses: docker/login-action@v3 diff --git a/.github/workflows/ci-pr-frontend.yml b/.github/workflows/ci-pr-frontend.yml index 982791c..af0a737 100644 --- a/.github/workflows/ci-pr-frontend.yml +++ b/.github/workflows/ci-pr-frontend.yml @@ -70,6 +70,9 @@ jobs: with: fetch-depth: 0 + - name: Set up Docker Buildx + run: docker buildx create --use --bootstrap + - name: Log in to Gitea Container Registry uses: docker/login-action@v3 with: