tangled
alpha
login
or
join now
holly.mlem.systems
/
devins.page
forked from
devins.page/devins.page
0
fork
atom
my website, hosted on wisp.place
0
fork
atom
overview
issues
pulls
pipelines
fix: use bun
from example
devins.page
1 month ago
b94fac93
98f03824
+6
-4
1 changed file
expand all
collapse all
unified
split
.tangled
workflows
wisp-deploy.yaml
+6
-4
.tangled/workflows/wisp-deploy.yaml
···
12
12
13
13
dependencies:
14
14
nixpkgs:
15
15
-
- pnpm
16
15
- nodejs
17
16
- coreutils
18
17
- curl
18
18
+
github:NixOS/nixpkgs/nixpkgs-unstable:
19
19
+
- bun
19
20
20
21
environment:
21
22
SITE_PATH: "dist"
···
25
26
steps:
26
27
- name: build site
27
28
command: |
28
28
-
# necessary to ensure pnpm is in PATH
29
29
+
# necessary to ensure bun is in PATH
29
30
export PATH="$HOME/.nix-profile/bin:$PATH"
30
31
31
31
-
pnpm install --frozen-lockfile
32
32
+
bun install --frozen-lockfile
32
33
33
33
-
pnpm astro build
34
34
+
# build with vite, run directly to get around env issues
35
35
+
bun node_modules/.bin/astro build
34
36
35
37
- name: deploy to wisp
36
38
command: |