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

rename pipeline file

Changed files
+6
.tangled
workflows
+6
.tangled/workflows/pipeline.yml .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
···
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
···
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!\""