From 6efe762f49f0de9f8891a6f3b4c94368c8112dd8 Mon Sep 17 00:00:00 2001 From: ObNitram Date: Tue, 20 Jan 2026 10:11:20 +0100 Subject: [PATCH] Enable Docker build and push step in action-build-and-push.yaml with push set to false --- .github/workflows/action-build-and-push.yaml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/action-build-and-push.yaml b/.github/workflows/action-build-and-push.yaml index 99f48b1..200db22 100644 --- a/.github/workflows/action-build-and-push.yaml +++ b/.github/workflows/action-build-and-push.yaml @@ -74,12 +74,12 @@ jobs: # username: ${{ github.repository_owner }} # password: ${{ secrets.GITHUB_TOKEN }} - # - name: Build and push - # uses: docker/build-push-action@v6 - # with: - # context: ${{ inputs.build_context }} - # file: ${{ inputs.file_path }} - # platforms: ${{ inputs.platforms }} - # push: true - # tags: ${{ steps.meta.outputs.tags }} - # labels: ${{ steps.meta.outputs.labels }} + - name: Build and push + uses: docker/build-push-action@v6 + with: + context: ${{ inputs.build_context }} + file: ${{ inputs.file_path }} + platforms: ${{ inputs.platforms }} + push: false + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }}