tangled
alpha
login
or
join now
veryroundbird.house
/
pds-dash
4
fork
atom
pds dash for shimaenaga.veryroundbird.house (based off of pds.witchcraft.systems)
4
fork
atom
overview
issues
pulls
pipelines
rename pipeline file
veryroundbird.house
6 months ago
487c39c6
6a26d93d
+6
1 changed file
expand all
collapse all
unified
split
.tangled
workflows
build.yml
+6
.tangled/workflows/pipeline.yml
.tangled/workflows/build.yml
reviewed
···
1
1
when:
2
2
- event: ["push", "manual"]
3
3
branch: ["main"]
4
4
+
4
5
engine: "nixery"
6
6
+
5
7
dependencies:
6
8
nixpkgs:
7
9
- deno
10
10
+
8
11
steps:
9
12
- name: "Build static files"
10
13
command: "deno run build"
14
14
+
11
15
- name: "SSH setup"
12
16
command: |
13
17
mkdir ~/.ssh
···
26
30
chmod 600 ~/.ssh/config
27
31
ssh-keyscan -H ${{ secrets.SERVER_HOST }} >> ~/.ssh/known_hosts
28
32
echo "🪶 deploying to shimaenaga pds"
33
33
+
29
34
- name: "Deploy via SCP"
30
35
run: scp -r ./dist/* deploy:/pds/caddy/webroot
36
36
+
31
37
- name: "Done!"
32
38
command: "echo \"🪶 all done!\""