···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
2828+2129 # 1. Install deployctl and add it to the path for the next command
2230 export PATH="$HOME/.deno/bin:$PATH"
2331 deno install -gArf jsr:@deno/deployctl