From 89f9808719be129dc82c09ae5c4f7d5c2ed2b3ad Mon Sep 17 00:00:00 2001 From: Keannu Bernasol Date: Mon, 4 Dec 2023 19:16:47 +0800 Subject: [PATCH] added woodpecker.yml --- woodpecker.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 woodpecker.yml diff --git a/woodpecker.yml b/woodpecker.yml new file mode 100644 index 0000000..a58b1ea --- /dev/null +++ b/woodpecker.yml @@ -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