From 837f59bf5073d89835f3d85f8152b4750a78663a Mon Sep 17 00:00:00 2001 From: Sid Dange Date: Thu, 1 May 2025 13:12:25 -0400 Subject: [PATCH] Fix README example formatting --- README.md | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index bbeff91..41b98a9 100644 --- a/README.md +++ b/README.md @@ -46,16 +46,14 @@ jobs: buildx: runs-on: ubuntu-latest steps: - - - name: Checkout + - name: Checkout uses: actions/checkout@v4 - - - # Add support for more platforms with QEMU (optional) - # https://github.com/docker/setup-qemu-action - name: Set up QEMU + + # Add support for more platforms with QEMU (optional) https://github.com/docker/setup-qemu-action + - name: Set up QEMU uses: docker/setup-qemu-action@v3 - - - name: Set up Docker Buildx + + - name: Set up Docker Buildx uses: buildpulse/setup-buildx-action@v3 ```