ci: debug harbor login -- print credential lengths
Some checks failed
ci / secrets (push) Successful in 8s
ci / test (push) Successful in 19s
ci / build (push) Failing after 20s

This commit is contained in:
user
2026-02-21 18:12:57 +01:00
parent c46a347def
commit 3b5ebbaa2e

View File

@@ -33,7 +33,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: echo "${{ secrets.HARBOR_PASS }}" | docker login harbor.mymx.me -u "${{ secrets.HARBOR_USER }}" --password-stdin
- run: |
echo "user length: ${#HARBOR_USER}, pass length: ${#HARBOR_PASS}"
echo "$HARBOR_PASS" | docker login harbor.mymx.me -u "$HARBOR_USER" --password-stdin
env:
HARBOR_USER: ${{ secrets.HARBOR_USER }}
HARBOR_PASS: ${{ secrets.HARBOR_PASS }}
- run: |
docker build \
-t harbor.mymx.me/s5p/s5p:latest \