update_again
Some checks failed
Test Gitea Secrets / deploy-to-modal (push) Failing after 18s

This commit is contained in:
DatTT127
2026-07-17 00:22:57 +07:00
parent 4906005cb9
commit bbdc205be2

View File

@@ -12,10 +12,13 @@ jobs:
uses: actions/checkout@v4
- name: Debug Modal Credentials
run: |
run: |
echo "DEBUG: Token ID is: '${MODAL_TOKEN_ID}'"
echo "DEBUG: Token ID length is: ${#MODAL_TOKEN_ID}"
echo "DEBUG: First 5 chars are: ${MODAL_TOKEN_ID:0:5}"
# Use 'cut' to get the first 5 characters safely
FIRST_5=$(echo "$MODAL_TOKEN_ID" | cut -c1-5)
echo "DEBUG: First 5 chars are: '$FIRST_5'"
env:
# This maps the Gitea Repository Secret to an Environment Variable