website/.woodpecker.yml

14 lines
412 B
YAML
Raw Normal View History

steps:
init_ssh:
image: machines/local
2022-09-12 16:08:49 +00:00
commands:
- mkdir -p ~/.ssh
- echo "$PRIVKEY" > ~/.ssh/id_rsa
2022-09-12 16:38:30 +00:00
- chmod 700 ~/.ssh && chmod 600 ~/.ssh/id_rsa
2022-09-12 17:10:38 +00:00
secrets: [ privkey ]
update:
image: machines/local
commands:
- ssh websiteupdate@172.17.0.1 -i ~/.ssh/id_rsa "cd /websiteupdate/website && git reset --hard origin/master && git config pull.rebase true && git pull"