Ludger Sicking
d3445712fc
All checks were successful
ci/woodpecker/push/build_and_copy_blog Pipeline was successful
45 lines
1.3 KiB
YAML
45 lines
1.3 KiB
YAML
when:
|
|
- branch: main
|
|
event: push
|
|
path:
|
|
include: ['sb/**']
|
|
on_empty: false
|
|
|
|
steps:
|
|
- name: log_start_time
|
|
image: alpine
|
|
commands:
|
|
- date -I'seconds'
|
|
|
|
- name: build_by_hugo
|
|
image: hugomods/hugo
|
|
commands:
|
|
- hugo version
|
|
- hugo -s sb --logLevel info
|
|
|
|
- name: copy_to_server
|
|
image: alpine
|
|
environment:
|
|
SSH_HOST:
|
|
from_secret: ssh_host
|
|
SSH_USER:
|
|
from_secret: ssh_user
|
|
SSH_KEY:
|
|
from_secret: ssh_key
|
|
SSH_PORT:
|
|
from_secret: ssh_port
|
|
DOMAIN_FOLDER:
|
|
from_secret: domain_folder
|
|
TARGET_PATH:
|
|
from_secret: target_path
|
|
|
|
commands:
|
|
- apk add --no-cache openssh
|
|
- mkdir -p ~/.ssh
|
|
- echo "$SSH_KEY" | tr -d '\r' > ~/.ssh/deployKey
|
|
- chmod 600 ~/.ssh/deployKey
|
|
- ssh-keyscan -H -p $SSH_PORT $SSH_HOST 2>/dev/null >> ~/.ssh/known_hosts
|
|
- chmod 600 ~/.ssh/known_hosts
|
|
- ssh -i ~/.ssh/deployKey -p $SSH_PORT $SSH_USER@$SSH_HOST "touch $DOMAIN_FOLDER/log/time_begin_copy_$(date +'%Y-%m-%d_%T')"
|
|
- scp -r -i ~/.ssh/deployKey -P $SSH_PORT sb/public/* $SSH_USER@$SSH_HOST:$DOMAIN_FOLDER/$TARGET_PATH/
|
|
- ssh -i ~/.ssh/deployKey -p $SSH_PORT $SSH_USER@$SSH_HOST "touch $DOMAIN_FOLDER/log/time_end_copy_$(date +'%Y-%m-%d_%T')" |