From 178fae2d29a7107c0818ce3f2931b2432ef4ecfb Mon Sep 17 00:00:00 2001 From: Ryan Kegel Date: Mon, 7 Sep 2026 23:54:55 -0400 Subject: [PATCH] fix: correct indentation for debug step in build workflow --- .gitea/workflows/build.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 7bbc995..4d5dca1 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -10,12 +10,12 @@ jobs: build-and-push: runs-on: ubuntu-latest steps: - - name: Debug Deployment Username - run: | - echo "Username length: ${#USERNAME}" - echo "Username: $(echo -n "$USERNAME")" - env: - USERNAME: ${{ secrets.DEPLOY_TEST_USER }} + - name: Debug Deployment Username + run: | + echo "Username length: ${#USERNAME}" + echo "Username: $(echo -n "$USERNAME")" + env: + USERNAME: ${{ secrets.DEPLOY_TEST_USER }} - name: Check out repository code uses: actions/checkout@v3