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

does this work instead

+1 -14
+1 -14
.tangled/workflows/build.yml
··· 14 14 command: | 15 15 echo "🪶 copying config from secrets" 16 16 echo "${CONFIG}" > config.ts 17 - echo "🪶 debugging config" 18 - cat config.ts 19 17 20 18 - name: "Set up Deno" 21 19 command: | ··· 32 30 mkdir ~/.ssh 33 31 echo "${SSH_KEY}" > ~/.ssh/id_tangledsh 34 32 chmod 600 ~/.ssh/id_tangledsh 35 - cat > ~/.ssh/config << EOF 36 - Host deploy 37 - HostName ${SERVER_HOST} 38 - User ${SERVER_USER} 39 - IdentityFile ~/.ssh/id_tangledsh 40 - StrictHostKeyChecking accept-new 41 - BatchMode yes 42 - PasswordAuthentication no 43 - PubkeyAuthentication yes 44 - EOF 45 - chmod 600 ~/.ssh/config 46 33 ssh-keyscan -H ${SERVER_HOST} >> ~/.ssh/known_hosts 47 34 echo "🪶 setting up ssh connection" 48 35 49 36 - name: "Deploy via SCP" 50 37 command: | 51 38 echo "🪶 deploying files via scp" 52 - scp -r ./dist/* deploy:/pds/caddy/etc/caddy/static 39 + scp -r ./dist/* ${SERVER_USER}@${SERVER_HOST}:/pds/caddy/etc/caddy/static 53 40 54 41 - name: "Done!" 55 42 command: |