From b9feb92cd139e34345f2dbf80049461cb54ff4c1 Mon Sep 17 00:00:00 2001 From: mrinc Date: Tue, 25 Jul 2023 11:32:46 +0200 Subject: [PATCH] chore(build.yml): update docker/build-push-action to v4 chore(build.yml): remove unnecessary indentation in build step chore(build.yml): remove commented out platform option chore(build.yml): remove unnecessary build-args indentation chore(build.yml): remove unnecessary tags indentation --- .github/workflows/build.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 68641a3..8369a89 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,13 +33,12 @@ jobs: password: ${{ secrets.DOCKER_HUB_TOKEN }} - name: Build - uses: docker/build-push-action@v2 + uses: docker/build-push-action@v4 with: builder: ${{ steps.buildx.outputs.name }} context: ./ file: ./Dockerfile platforms: linux/amd64 # ,linux/arm64/v8 push: true - build-args: - HUGO_VERSION=${{ matrix.hugo-version }} + build-args: HUGO_VERSION=${{ matrix.hugo-version }} tags: betterweb/hugo:${{ matrix.hugo-version }}-extended