lazygit
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
maren 2024-01-07 20:43:30 -05:00
parent 8b46222ecd
commit 3ced7b2bfc

View file

@ -16,16 +16,17 @@ steps:
image: alpine:latest
secrets: [ deploy_ssh_key ]
commands:
- ls
- apk add openssh
- mkdir ~/.ssh
- printf '%s\n' "$${DEPLOY_SSH_KEY}" > ~/.ssh/deploy_ssh_key
- printf "Host turtle.hup.is\n\tIdentityFile ~/.ssh/deploy_ssh_key\n\tUserKnownHostsFile=/dev/null\n\tStrictHostKeyChecking=no\n" > ~/.ssh/config
- chmod -R u=rwX,go= ~/.ssh
# - rsync -rPvce ssh --chmod=ugo=rwX --no-times public/ www-fediparty@fediverse.party:www/
- scp -r dist deploy@turtle.hup.is:~/
- scp -r source deploy@turtle.hup.is:~/
- scp -r static deploy@turtle.hup.is:~/
- mkdir oxaliq
- mv dist oxaliq/.
- mv source oxaliq/.
- mv static oxaliq/.
- scp -r oxaliq deploy@turtle.hup.is:~/
- ssh deploy@turtle.hup.is 'sudo rm /srv/oxaliq || true && sudo mv oxaliq /srv/. && sudo systemctl restart sorreldotdev.service'
when:
# Only try to deploy if previous step is successful
status: success