mirror of
https://github.com/lemeow125/Notes.git
synced 2024-11-17 04:09:26 +08:00
Add .woodpecker file
This commit is contained in:
parent
dfe9fbf05c
commit
40785dd665
2 changed files with 18 additions and 0 deletions
18
.woodpecker.yml
Normal file
18
.woodpecker.yml
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
# .woodpecker.yml
|
||||||
|
steps:
|
||||||
|
- name: build & copy
|
||||||
|
image: node:18-alpine
|
||||||
|
when:
|
||||||
|
- branch: master
|
||||||
|
event: push
|
||||||
|
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 "$REMOTE_HOST" 'rm -rf /mnt/nvme/www/resources/*'
|
||||||
|
- scp -r dist/* root@10.0.10.4:/mnt/nvme/www/resources
|
||||||
|
secrets: [SSH_KEY, REMOTE_HOST]
|
Loading…
Reference in a new issue