From 0fbfd6c370c31ff09814d151654e5fcbe6665390 Mon Sep 17 00:00:00 2001 From: markagonzales Date: Fri, 29 Nov 2024 13:36:29 -0600 Subject: [PATCH] debugging --- .github/workflows/rebuild.yaml | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/rebuild.yaml b/.github/workflows/rebuild.yaml index 84e4332..7f0b338 100644 --- a/.github/workflows/rebuild.yaml +++ b/.github/workflows/rebuild.yaml @@ -6,7 +6,7 @@ on: workflow_dispatch: inputs: ansible-builder-args: - default: "" + default: '--output-filename Dockerfile' description: action arguments required: false type: string @@ -58,21 +58,21 @@ jobs: run: | ls -alth ./context/ && pwd - # - name: Set up QEMU - # uses: docker/setup-qemu-action@v3 + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 - # - name: Set up Docker Buildx - # uses: docker/setup-buildx-action@v3 + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 - # - name: Login to Docker Hub - # uses: docker/login-action@v3 - # with: - # username: ${{ secrets.DOCKERHUB_USERNAME }} - # password: ${{ secrets.DOCKERHUB_TOKEN }} + - name: Login to Docker Hub + uses: docker/login-action@v3 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} - # - name: Build and push - # uses: docker/build-push-action@v6 - # with: - # push: true - # tags: hooplad/ansible:rocky9-2.14 - # file: context/_build/Dockerfile + - name: Build and push + uses: docker/build-push-action@v6 + with: + push: true + tags: hooplad/ansible:rocky9-2.14 + file: context/Dockerfile