From 36370bcfdefa9e325e120040ed302e2c4434d3d3 Mon Sep 17 00:00:00 2001 From: andy5995 Date: Thu, 1 Feb 2024 21:47:55 -0600 Subject: [PATCH] CI-fix: Indentation --- .github/workflows/docker.yml | 60 ++++++++++++++++++------------------ 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 1bf347f..2d7ba79 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -12,34 +12,34 @@ on: jobs: build-image: - runs-on: ubuntu-latest - steps: - - - name: Checkout - uses: actions/checkout@v4 - with: - submodules: true - - - name: Set up QEMU - uses: docker/setup-qemu-action@v3 - - - name: Login to Docker Hub - uses: docker/login-action@v3 - with: - username: andy5995 - password: ${{ secrets.UNCLE_ANDY_DOCKERHUB_ACCESS_TOKEN }} - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 + runs-on: ubuntu-latest + steps: + - + name: Checkout + uses: actions/checkout@v4 + with: + submodules: true + - + name: Set up QEMU + uses: docker/setup-qemu-action@v3 + - + name: Login to Docker Hub + uses: docker/login-action@v3 + with: + username: andy5995 + password: ${{ secrets.UNCLE_ANDY_DOCKERHUB_ACCESS_TOKEN }} + - + 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 - platforms: linux/amd64,linux/arm64 - push: true - tags: andy5995/linuxdeploy:latest - cache-from: type=registry,ref=andy5995/linuxdeploy:buildcache - cache-to: type=registry,ref=andy5995/linuxdeploy:buildcache,mode=max + - + name: Build and push + uses: docker/build-push-action@v5 + with: + context: . + file: ./Dockerfile + platforms: linux/amd64,linux/arm64 + push: true + tags: andy5995/linuxdeploy:latest + cache-from: type=registry,ref=andy5995/linuxdeploy:buildcache + cache-to: type=registry,ref=andy5995/linuxdeploy:buildcache,mode=max