From e1015e5d6bcdeb26b67422ec57fcd8d67d69b6c3 Mon Sep 17 00:00:00 2001 From: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com> Date: Sat, 4 May 2024 17:44:15 -0600 Subject: [PATCH] chore: updated build --- .github/workflows/canary.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/canary.yml b/.github/workflows/canary.yml index e0ed54cfa..34adb6510 100644 --- a/.github/workflows/canary.yml +++ b/.github/workflows/canary.yml @@ -10,6 +10,17 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + + - name: Set up custom builder + id: buildx + uses: docker/setup-buildx-action@v3 + with: + driver-opts: | + image=moby/buildkit:master + network=host + buildkitd-flags: '--allow-insecure-entitlement security.insecure --allow-insecure-entitlement network.host' + # Puedes agregar más opciones según tus necesidades + - name: Login to Docker Hub uses: docker/login-action@v3 @@ -28,3 +39,4 @@ jobs: platforms: linux/amd64,linux/arm64 push: false tags: dokploy/dokploy:canary + builder: ${{ steps.buildx.outputs.name }}