polsevev.dev/.woodpecker/main.yml
2024-08-04 00:38:56 +02:00

15 lines
373 B
YAML

when:
- event: push
branch: master
steps:
- name: build
image: node:bookworm-slim
commands:
- npm install
- npm run build
- mkdir /root/.ssh && chmod 0700 /root/.ssh
- touch /root/.ssh/id_rsa && echo $SSH_KEY > /root/.ssh/id_rsa && chmod 0600 /root/.ssh/id_rsa
- rsync -avzh ./dist ansible@$REMOTE_IP:/var/www/polsevev/dist