tangled
alpha
login
or
join now
vt3e.cat
/
www
2
fork
atom
this repo has no descr,ription
vt3e.cat
2
fork
atom
overview
issues
pulls
pipelines
ci: oh thats why
vt3e.cat
4 months ago
e06ecee1
66f7bc4c
verified
This commit was signed with the committer's
known signature
.
vt3e.cat
SSH Key Fingerprint:
SHA256:bC12nO0d6wKnJ426YBbLO7LVxmZlwJ1l2X0eqOroDV0=
0/1
deploy.yaml
failed
24s
+13
-3
1 changed file
expand all
collapse all
unified
split
.tangled
workflows
deploy.yaml
+13
-3
.tangled/workflows/deploy.yaml
···
27
27
- name: build
28
28
command: |
29
29
export PATH="$HOME/.nix-profile/bin:$PATH"
30
30
+
export ROOT_DIR="$PWD"
31
31
+
bun tsc -v
30
32
31
33
bun install --frozen-lockfile
32
32
-
bun run build:all
33
33
-
mv pkgs/web/dist ./dist
34
34
35
35
-
bun tsc -v
35
35
+
cd ${ROOT_DIR}/pkgs/gallery
36
36
+
rm -r ./lexicons/
37
37
+
bun node_modules/.bin/tsp compile src
38
38
+
bun node_modules/.bin/lex-cli generate -c ./lexicon.config.ts
39
39
+
bunx tsc
40
40
+
41
41
+
cd ${ROOT_DIR}/pkgs/web
42
42
+
bun run build
43
43
+
mv dist ${ROOT_DIR}/dist
44
44
+
45
45
+
cd ${ROOT_DIR}
36
46
37
47
- name: deploy
38
48
command: |