tangled
alpha
login
or
join now
vittoriogioda.com
/
website
0
fork
atom
My personal website
vittoriogioda.com
blog
portfolio
personal-website
0
fork
atom
overview
issues
pulls
pipelines
chore: prepare workflow structure
Vittorio
3 weeks ago
c6e947a6
d046b5cc
0/0
Waiting for spindle ...
+32
1 changed file
expand all
collapse all
unified
split
.tangled
workflows
deploy.yml
+32
.tangled/workflows/deploy.yml
···
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
+
clone:
9
9
+
skip: false
10
10
+
depth: 1
11
11
+
12
12
+
dependencies:
13
13
+
nixpkgs:
14
14
+
- coreutils
15
15
+
- curl
16
16
+
17
17
+
environment:
18
18
+
SITE_PATH: '.'
19
19
+
SITE_NAME: 'vittoriogioda.com'
20
20
+
WISP_HANDLE: 'vittoriogioda.com'
21
21
+
22
22
+
steps:
23
23
+
- name: deploy assets to wisp
24
24
+
command: |
25
25
+
curl https://sites.wisp.place/nekomimi.pet/wisp-cli-binaries/wisp-cli-x86_64-linux -o wisp-cli
26
26
+
chmod +x wisp-cli
27
27
+
28
28
+
./wisp-cli deploy \
29
29
+
"$WISP_HANDLE" \
30
30
+
--path "$SITE_PATH" \
31
31
+
--site "$SITE_NAME" \
32
32
+
--password "$WISP_APP_PASSWORD"