update CIs
All checks were successful
ci/woodpecker/push/deploy-rsync Pipeline was successful
ci/woodpecker/push/netlify Pipeline was successful

This commit is contained in:
Adora Laura Kalb 2024-05-06 11:14:55 +02:00
parent 5fdbce0fb2
commit 71828bc64d
Signed by: adoralaura
SSH key fingerprint: SHA256:3XrkbR8ikAZJVtYfaUliX1MhmJYVAe/ocIb/MiDHBJ8
2 changed files with 26 additions and 3 deletions

View file

@ -0,0 +1,24 @@
steps:
build:
image: python:3
commands:
- pip3 install -r requirements.txt
- mkdocs build --site-dir publish
upload:
image: alpine:latest
secrets:
- RSYNC_SSHKEY
- RSYNC_TARGET_SERVER
- RSYNC_TARGET_USER
- RSYNC_TARGET_PATH
when:
- event: push
branch: main
commands:
- apk add --update --no-cache openssh rsync git
- mkdir -p $HOME/.ssh
- echo "$RSYNC_SSHKEY" > $HOME/.ssh/id_ed25519
- chmod 0600 $HOME/.ssh/id_ed25519
- ssh-keyscan -t ed25519 $RSYNC_TARGET_SERVER >> $HOME/.ssh/known_hosts
- rsync -avh --delete ./publish/ $RSYNC_TARGET_USER@$RSYNC_TARGET_SERVER:$RSYNC_TARGET_PATH

View file

@ -2,7 +2,7 @@ when:
event: push
branch: main
pipeline:
steps:
build:
image: python:3.9
commands:
@ -11,9 +11,8 @@ pipeline:
deploy:
image: node:18
environment:
- NETLIFY_SITE_ID=a41006ac-4870-484f-9fef-2d45e9546837
secrets:
- NETLIFY_SITE_ID
- NETLIFY_AUTH_TOKEN
commands:
- npm install -D netlify-cli