fix: correct indentation for Debug Deployment Username step in build workflow
Chore App Build, Test, and Push Docker Images / build-and-push (push) Canceled after 24s

This commit is contained in:
2026-09-07 23:55:52 -04:00
parent 703533b3be
commit cd0359a50d
+6 -6
View File
@@ -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