maren/add-ci #2

Closed
maren wants to merge 21 commits from maren/add-ci into main
Showing only changes of commit 3ced7b2bfc - Show all commits

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