alpha
Login
or
Join now
aly.codes
/
haunt
Star
0
Fork
1
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
A demon compendium, deterministically derived from DIDs + PDS records.
haunt.at
atmosphere
atproto
Star
0
Fork
1
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
tangled: add ci
author
Aly Raffauf
date
4 days ago
(Jul 23, 2026, 11:44 AM -0400)
commit
0832fa6b
0832fa6b337b8f8c65ac6a59d6aa9a1b6d4f54c0
parent
76f31eba
76f31eba8a544e624684986edec3be94d4cabf2d
+44
1 changed file
Expand all
Collapse all
Unified
Split
.tangled
deploy.yml
+44
.tangled/deploy.yml
View file
Reviewed
···
1
1
+
when:
2
2
+
- event: ['push']
3
3
+
branch: ['main']
4
4
+
- event: ['manual']
5
5
+
6
6
+
engine: 'nixery'
7
7
+
8
8
+
dependencies:
9
9
+
nixpkgs:
10
10
+
- nodejs
11
11
+
- coreutils
12
12
+
- curl
13
13
+
- glibc
14
14
+
github:NixOS/nixpkgs/nixpkgs-unstable:
15
15
+
- bun
16
16
+
17
17
+
environment:
18
18
+
SITE_PATH: 'dist'
19
19
+
SITE_NAME: 'haunt'
20
20
+
WISP_HANDLE: 'aly.codes'
21
21
+
22
22
+
steps:
23
23
+
- name: build site
24
24
+
command: |
25
25
+
export PATH="$HOME/.nix-profile/bin:$PATH"
26
26
+
27
27
+
# you may need to regenerate the lockfile due to nixery being weird
28
28
+
# rm package-lock.json bun.lock
29
29
+
bun install
30
30
+
31
31
+
bun run build
32
32
+
33
33
+
- name: deploy to wisp
34
34
+
command: |
35
35
+
# Download Wisp CLI
36
36
+
curl https://sites.wisp.place/nekomimi.pet/wisp-cli-binaries/wisp-cli-x86_64-linux -o wisp-cli
37
37
+
chmod +x wisp-cli
38
38
+
39
39
+
# Deploy to Wisp
40
40
+
./wisp-cli \
41
41
+
"$WISP_HANDLE" \
42
42
+
--path "$SITE_PATH" \
43
43
+
--site "$SITE_NAME" \
44
44
+
--password "$WISP_APP_PASSWORD"