Borrowing-TrackerFrontend/.woodpecker.yml

18 lines
508 B
YAML
Raw Normal View History

2023-12-04 19:21:15 +08:00
# .woodpecker.yml
steps:
2023-12-04 19:16:47 +08:00
- name: build
2023-12-04 19:26:01 +08:00
image: node:18
2023-12-04 19:16:47 +08:00
commands:
- npm install
- npm run build
- name: copy
image: alpine
commands:
- apk add --no-cache openssh-client
- mkdir -p /root/.ssh/
2023-12-04 19:54:48 +08:00
- echo $SSH_KEY | tr -d '\r' > /root/.ssh/id_rsa
2023-12-04 19:16:47 +08:00
- chmod 600 /root/.ssh/id_rsa
- echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > /root/.ssh/config
2023-12-04 19:57:24 +08:00
- scp -r dist/* root@10.0.10.4:/mnt/sda1/projects/equipment_tracker_frontend
secrets: [SSH_KEY]