Ludger Sicking
e3ea40da8a
Some checks are pending
ci/woodpecker/push/build_and_copy_blog Pipeline is pending approval
60 lines
2 KiB
YAML
60 lines
2 KiB
YAML
steps:
|
|
|
|
- name: set_path_for_branch
|
|
image: alpine
|
|
commands:
|
|
- echo 'Schritt.01. set_path_for_branch'
|
|
- echo "PATH_FOR_BRANCH=$CI_COMMIT_BRANCH" >> environment_variables
|
|
- cat environment_variables
|
|
- sed "s+'//oer.community/'+'//oer.community/sb/${CI_COMMIT_BRANCH}/'+" sb/hugo.yaml > hugo-changed.yaml
|
|
- cat sb/hugo.yaml
|
|
- cat hugo-changed.yaml
|
|
- mv hugo-changed.yaml sb/hugo.yaml
|
|
- find . -name "*hugo*ml"
|
|
|
|
- name: build_by_hugo
|
|
image: hugomods/hugo
|
|
commands:
|
|
- hugo version
|
|
- git -C sb/themes/ submodule update --remote --recursive
|
|
- hugo --cleanDestinationDir -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
|
|
TARGET_PATH:
|
|
from_secret: target_path
|
|
|
|
commands:
|
|
- BLOG_FOLDER=$TARGET_PATH/sb/${CI_COMMIT_BRANCH}
|
|
- echo $BLOG_FOLDER
|
|
|
|
- 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 "mkdir -p $BLOG_FOLDER"
|
|
|
|
- SSH_COMMAND="touch $BLOG_FOLDER/touchdown-txt_dot-log"
|
|
- ssh -i ~/.ssh/deployKey -p $SSH_PORT $SSH_USER@$SSH_HOST $SSH_COMMAND
|
|
- ssh -i ~/.ssh/deployKey -p $SSH_PORT $SSH_USER@$SSH_HOST 'ls -la'
|
|
- ssh -i ~/.ssh/deployKey -p $SSH_PORT $SSH_USER@$SSH_HOST "ls -la $BLOG_FOLDER"
|
|
|
|
- SSH_COMMAND="mkdir -p "$BLOG_FOLDER/_unter_ordner; touch $BLOG_FOLDER/_unter_ordner/_eine_datei"
|
|
- ssh -i ~/.ssh/deployKey -p $SSH_PORT $SSH_USER@$SSH_HOST $SSH_COMMAND
|
|
|
|
- SSH_COMMAND="rmdir -p "$BLOG_FOLDER/_unter_ordner"
|
|
- ssh -i ~/.ssh/deployKey -p $SSH_PORT $SSH_USER@$SSH_HOST $SSH_COMMAND
|
|
|