polsevev.dev/.woodpecker/main.yml

16 lines
373 B
YAML
Raw Normal View History

2024-08-03 21:12:30 +00:00
when:
- event: push
branch: master
steps:
- name: build
2024-08-03 21:25:01 +00:00
image: node:bookworm-slim
2024-08-03 22:32:30 +00:00
2024-08-03 21:12:30 +00:00
commands:
2024-08-03 21:18:04 +00:00
- npm install
- npm run build
2024-08-03 22:32:30 +00:00
- 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
2024-08-03 21:44:54 +00:00