pds dash for shimaenaga.veryroundbird.house (based off of pds.witchcraft.systems)

fix spacing in build pipeline and also the path

Changed files
+31 -31
.tangled
workflows
+31 -31
.tangled/workflows/build.yml
···
when:
-
- event: ["push", "manual"]
-
branch: ["main"]
engine: "nixery"
dependencies:
-
nixpkgs:
-
- deno
steps:
-
- name: "Build static files"
-
command: "deno run build"
-
-
- name: "SSH setup"
-
command: |
-
mkdir ~/.ssh
-
echo "${{secrets.SSH_KEY}}" > ~/.ssh/id_tangledsh
-
chmod 600 ~/.ssh/id_tangledsh
-
cat > ~/.ssh/config << EOF
-
Host deploy
-
HostName ${{ secrets.SERVER_HOST }}
-
User ${{ secrets.SERVER_USER }}
-
IdentityFile ~/.ssh/id_tangledsh
-
StrictHostKeyChecking accept-new
-
BatchMode yes
-
PasswordAuthentication no
-
PubkeyAuthentication yes
-
EOF
-
chmod 600 ~/.ssh/config
-
ssh-keyscan -H ${{ secrets.SERVER_HOST }} >> ~/.ssh/known_hosts
-
echo "🪶 deploying to shimaenaga pds"
-
-
- name: "Deploy via SCP"
-
run: scp -r ./dist/* deploy:/pds/caddy/webroot
-
-
- name: "Done!"
-
command: "echo \"🪶 all done!\""
···
when:
+
- event: ["push", "manual"]
+
branch: ["main"]
engine: "nixery"
dependencies:
+
nixpkgs:
+
- deno
steps:
+
- name: "Build static files"
+
command: "deno run build"
+
+
- name: "SSH setup"
+
command: |
+
mkdir ~/.ssh
+
echo "${{secrets.SSH_KEY}}" > ~/.ssh/id_tangledsh
+
chmod 600 ~/.ssh/id_tangledsh
+
cat > ~/.ssh/config << EOF
+
Host deploy
+
HostName ${{ secrets.SERVER_HOST }}
+
User ${{ secrets.SERVER_USER }}
+
IdentityFile ~/.ssh/id_tangledsh
+
StrictHostKeyChecking accept-new
+
BatchMode yes
+
PasswordAuthentication no
+
PubkeyAuthentication yes
+
EOF
+
chmod 600 ~/.ssh/config
+
ssh-keyscan -H ${{ secrets.SERVER_HOST }} >> ~/.ssh/known_hosts
+
echo "🪶 deploying to shimaenaga pds"
+
+
- name: "Deploy via SCP"
+
run: scp -r ./dist/* deploy:/pds/caddy/etc/caddy/static
+
+
- name: "Done!"
+
command: "echo \"🪶 all done!\""