Update woodpecker.yml

This commit is contained in:
Keannu Bernasol 2023-12-04 19:57:24 +08:00
parent 9049ffb0eb
commit 790a4f06d7

View file

@ -8,11 +8,10 @@ steps:
- name: copy - name: copy
image: alpine image: alpine
commands: commands:
- echo $TEST
- 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
- scp -r dist/* username@10.0.10.4:/mnt/sda1/projects/equipment_tracker_frontend - scp -r dist/* root@10.0.10.4:/mnt/sda1/projects/equipment_tracker_frontend
secrets: [SSH_KEY, TEST] secrets: [SSH_KEY]