mirror of
https://github.com/lemeow125/EquipmentTracker-Frontend.git
synced 2024-11-17 06:09:25 +08:00
added woodpecker.yml
This commit is contained in:
parent
c4f503e4a8
commit
89f9808719
1 changed files with 17 additions and 0 deletions
17
woodpecker.yml
Normal file
17
woodpecker.yml
Normal file
|
@ -0,0 +1,17 @@
|
|||
pipeline:
|
||||
- name: build
|
||||
image: node:14
|
||||
commands:
|
||||
- npm install
|
||||
- npm run build
|
||||
- name: copy
|
||||
image: alpine
|
||||
environment:
|
||||
- SSH_KEY:
|
||||
from_secret: ssh_key
|
||||
commands:
|
||||
- apk add --no-cache openssh-client
|
||||
- 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/* username@10.0.10.4:/mnt/sda1/projects/equipment_tracker_frontend
|
Loading…
Reference in a new issue