debug(ci): add token debug step to verify secret is passed correctly
Build and Deploy / Build and Push Docker Image (push) Failing after 0s

This commit is contained in:
2026-08-08 01:15:22 +08:00
parent bf7e87b582
commit ea5f712f8c
+8
View File
@@ -51,6 +51,14 @@ jobs:
fi fi
node --version node --version
- name: Debug Token
run: |
echo "Token length: ${#TOKEN}"
echo "Token first 4 chars: ${TOKEN:0:4}"
echo "Token last 4 chars: ${TOKEN: -4}"
env:
TOKEN: ${{ secrets.TOKEN }}
- name: Checkout repository - name: Checkout repository
run: | run: |
cd /tmp cd /tmp