mirror of
https://github.com/lemeow125/EquipmentTracker-Frontend.git
synced 2024-11-16 21:59:24 +08:00
Update woodpecker.yml
This commit is contained in:
parent
440cd264a1
commit
e515e7ab5d
1 changed files with 18 additions and 17 deletions
|
@ -1,17 +1,18 @@
|
|||
# .woodpecker.yml
|
||||
steps:
|
||||
- name: build & copy
|
||||
image: node:18-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
|
||||
- npm install
|
||||
- npm run build
|
||||
- ssh root@10.0.10.4 'rm -rf /mnt/sda1/files/projects/equipment_tracker_frontend/*'
|
||||
- scp -r dist/* root@10.0.10.4:/mnt/sda1/files/projects/equipment_tracker_frontend
|
||||
when:
|
||||
- branch: master
|
||||
secrets: [SSH_KEY]
|
||||
# .woodpecker.yml
|
||||
steps:
|
||||
- name: build & copy
|
||||
image: node:18-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
|
||||
- npm install
|
||||
- npm run build
|
||||
- ssh root@10.0.10.4 'rm -rf /mnt/sda1/www/equipment_tracker_frontend/*'
|
||||
- scp -r dist/* root@10.0.10.4:/mnt/sda1/files/equipment_tracker_frontend
|
||||
when:
|
||||
- branch: master
|
||||
- event: push
|
||||
secrets: [SSH_KEY]
|
||||
|
|
Loading…
Reference in a new issue