bluesky quote bot

Fix: added PATH to make deployctl available

+2 -2
+2 -2
.tangled/workflows/deploy.yaml
··· 19 19 DENO_DEPLOY_ENTRYPOINT: main.ts 20 20 DENO_DEPLOY_ROOT: . 21 21 command: | 22 - # 1. Install deployctl 23 - deno install jsr:@deno/deployctl jsr:@deno/deployctl 22 + # 1. Install deployctl and add it to the path for the next command 23 + export PATH="$HOME/.deno/bin:$PATH" 24 24 25 25 # 2. Deploy project 26 26 deployctl deploy --project=$DENO_DEPLOY_PROJECT $DENO_DEPLOY_ENTRYPOINT --root=$DENO_DEPLOY_ROOT