bluesky quote bot

Tangled token test

+8
+8
.tangled/workflows/deploy.yaml
··· 18 18 DENO_DEPLOY_ENTRYPOINT: main.ts 19 19 DENO_DEPLOY_ROOT: . 20 20 command: | 21 + # 0. Check if the token is set (without printing its value) 22 + if [[ -n "$DENO_DEPLOY_TOKEN" ]]; then 23 + echo "✅ DENO_DEPLOY_TOKEN is set." 24 + else 25 + echo "❌ DENO_DEPLOY_TOKEN is not set. Please check your secrets." 26 + exit 1 27 + fi 28 + 21 29 # 1. Install deployctl and add it to the path for the next command 22 30 export PATH="$HOME/.deno/bin:$PATH" 23 31 deno install -gArf jsr:@deno/deployctl