From dcdf3c88b7f9fb19a4a42afba9e0f1bc9eb8af45 Mon Sep 17 00:00:00 2001 From: John Dorman <427295+boostchicken@users.noreply.github.com> Date: Tue, 31 Jan 2023 05:05:35 -0800 Subject: [PATCH] Update pihole.yml --- .github/workflows/pihole.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pihole.yml b/.github/workflows/pihole.yml index f169968..a5ed4d9 100644 --- a/.github/workflows/pihole.yml +++ b/.github/workflows/pihole.yml @@ -34,11 +34,11 @@ jobs: uses: docker/setup-buildx-action@v2 - name: Login to Docker Hub - uses: docker/login-action@v1 + uses: docker/login-action@v2 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - name: build pihole $VERSION - run: docker buildx build --platform=linux/amd64,linux/arm64 --build-arg VERSION=${{ env.VERSION }} run-pihole -t boostchicken/pihole:latest -t boostchicken/pihole:${{ env.VERSION }} --push + run: docker buildx build --platform=linux/arm64 --build-arg VERSION=${{ env.VERSION }} run-pihole -t boostchicken/pihole:latest -t boostchicken/pihole:${{ env.VERSION }} --push