From d815c976cedda265164120c47b7a8d8185f82e13 Mon Sep 17 00:00:00 2001 From: Myers Carpenter Date: Tue, 6 Jan 2026 22:01:40 -0500 Subject: [PATCH] Fix workflow YAML indentation --- .forgejo/workflows/build.yaml | 46 +++++++++++++++++------------------ 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/.forgejo/workflows/build.yaml b/.forgejo/workflows/build.yaml index c0131cc..3572e3a 100644 --- a/.forgejo/workflows/build.yaml +++ b/.forgejo/workflows/build.yaml @@ -2,29 +2,29 @@ name: Build and Push on: push: - branches: [main] + branches: [main] - jobs: - build: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 - - name: Download buildctl - run: | - curl -sSL https://github.com/moby/buildkit/releases/download/v0.15.0/buildkit-v0.15.0.linux-amd64.tar.gz | tar -xz -C /tmp - chmod +x /tmp/bin/buildctl + - name: Download buildctl + run: | + curl -sSL https://github.com/moby/buildkit/releases/download/v0.15.0/buildkit-v0.15.0.linux-amd64.tar.gz | tar -xz -C /tmp + chmod +x /tmp/bin/buildctl - - name: Build and push image - run: | - /tmp/bin/buildctl \ - --addr "$BUILDKIT_HOST" \ - --tlscacert /certs/ca.crt \ - --tlscert /certs/tls.crt \ - --tlskey /certs/tls.key \ - build \ - --frontend dockerfile.v0 \ - --local context=. \ - --local dockerfile=. \ - --output type=image,name=forgejo.monoloco.net/myers/test-build:latest,push=true \ No newline at end of file + - name: Build and push image + run: | + /tmp/bin/buildctl \ + --addr "$BUILDKIT_HOST" \ + --tlscacert /certs/ca.crt \ + --tlscert /certs/tls.crt \ + --tlskey /certs/tls.key \ + build \ + --frontend dockerfile.v0 \ + --local context=. \ + --local dockerfile=. \ + --output type=image,name=forgejo.monoloco.net/myers/test-build:latest,push=true