From 9df813be57aa1ba52f03ab5f620ce02617823f53 Mon Sep 17 00:00:00 2001 From: Mitch Downey Date: Wed, 29 May 2024 14:17:16 -0500 Subject: [PATCH] Fix action syntax --- .github/workflows/master.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index 0bc7c934..c00629f0 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -39,11 +39,11 @@ jobs: name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 - - - name: Build and push - uses: docker/build-push-action@v5 - with: - context: . - file: ./Dockerfile - push: true - tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest \ No newline at end of file + - + name: Build and push + uses: docker/build-push-action@v5 + with: + context: . + file: ./Dockerfile + push: true + tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest \ No newline at end of file