tangled
alpha
login
or
join now
ladas552.me
/
Nix-Docs
0
fork
atom
Site for my Nix docs
nix.ladas552.me
0
fork
atom
overview
issues
pulls
pipelines
is this the right syntax?
Ladas552
3 weeks ago
3bcacc5c
8c408559
+3
-4
1 changed file
expand all
collapse all
unified
split
.tangled
workflows
deploy.yaml
+3
-4
.tangled/workflows/deploy.yaml
···
15
15
CI: "true"
16
16
steps:
17
17
- name: build site
18
18
-
command: |
19
19
-
lith build
18
18
+
command: lith build
20
19
- name: deploy keys
20
20
+
command:
21
21
mkdir -p ~/.ssh
22
22
echo "$DEPLOY_SSH_KEY" > ~/.ssh/id_rsa
23
23
chmod 600 ~/.ssh/id_rsa
24
24
ssh-keyscan -H nix.ladas552.me >> ~/.ssh/known_hosts
25
25
- name: deploy site
26
26
-
command: |
27
27
-
scp -r public/ ladas552@nix.ladas552.me:~/sites/nix
26
26
+
command: scp -r public/ ladas552@nix.ladas552.me:~/sites/nix
28
27