mirror of
https://github.com/lemeow125/Borrowing-TrackerFrontend.git
synced 2024-11-17 06:19:27 +08:00
17 lines
508 B
YAML
17 lines
508 B
YAML
# .woodpecker.yml
|
|
steps:
|
|
- name: build
|
|
image: node:18
|
|
commands:
|
|
- npm install
|
|
- npm run build
|
|
- name: copy
|
|
image: alpine
|
|
commands:
|
|
- apk add --no-cache openssh-client
|
|
- mkdir -p /root/.ssh/
|
|
- echo $SSH_KEY | tr -d '\r' > /root/.ssh/id_rsa
|
|
- chmod 600 /root/.ssh/id_rsa
|
|
- echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > /root/.ssh/config
|
|
- scp -r dist/* root@10.0.10.4:/mnt/sda1/projects/equipment_tracker_frontend
|
|
secrets: [SSH_KEY]
|