Update woodpecker.yml

This commit is contained in:
Keannu Bernasol 2024-07-24 22:06:40 +08:00
parent 440cd264a1
commit e515e7ab5d

View file

@ -1,17 +1,18 @@
# .woodpecker.yml # .woodpecker.yml
steps: steps:
- name: build & copy - name: build & copy
image: node:18-alpine image: node:18-alpine
commands: commands:
- apk add --no-cache openssh-client - apk add --no-cache openssh-client
- mkdir -p /root/.ssh/ - mkdir -p /root/.ssh/
- echo "$SSH_KEY" | tr -d '\r' > /root/.ssh/id_rsa - echo "$SSH_KEY" | tr -d '\r' > /root/.ssh/id_rsa
- chmod 600 /root/.ssh/id_rsa - chmod 600 /root/.ssh/id_rsa
- echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > /root/.ssh/config - echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > /root/.ssh/config
- npm install - npm install
- npm run build - npm run build
- ssh root@10.0.10.4 'rm -rf /mnt/sda1/files/projects/equipment_tracker_frontend/*' - 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/projects/equipment_tracker_frontend - scp -r dist/* root@10.0.10.4:/mnt/sda1/files/equipment_tracker_frontend
when: when:
- branch: master - branch: master
secrets: [SSH_KEY] - event: push
secrets: [SSH_KEY]