tangled
alpha
login
or
join now
timtinkers.online
/
onomatopoeia
0
fork
atom
bluesky quote bot
0
fork
atom
overview
issues
pulls
pipelines
Fix: added PATH to make deployctl available
timtinkers.online
7 months ago
fbfc6072
504046fe
0/1
deploy.yaml
failed
11s
+2
-2
1 changed file
expand all
collapse all
unified
split
.tangled
workflows
deploy.yaml
+2
-2
.tangled/workflows/deploy.yaml
reviewed
···
19
19
DENO_DEPLOY_ENTRYPOINT: main.ts
20
20
DENO_DEPLOY_ROOT: .
21
21
command: |
22
22
-
# 1. Install deployctl
23
23
-
deno install jsr:@deno/deployctl jsr:@deno/deployctl
22
22
+
# 1. Install deployctl and add it to the path for the next command
23
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