···1818 DENO_DEPLOY_ENTRYPOINT: main.ts
1919 DENO_DEPLOY_ROOT: .
2020 command: |
2121- # 0. Check if the token is set (without printing its value)
2222- if [[ -n "$DENO_DEPLOY_TOKEN" ]]; then
2323- echo "✅ DENO_DEPLOY_TOKEN is set."
2424- else
2525- echo "❌ DENO_DEPLOY_TOKEN is not set. Please check your secrets."
2626- exit 1
2727- fi
2121+ # 0. Check if the token is set
2222+ echo "Deno Deploy Token: $DENO_DEPLOY_TOKEN"
2323+28242925 # 1. Install deployctl and add it to the path for the next command
3026 export PATH="$HOME/.deno/bin:$PATH"