diff --git a/.woodpecker/build_and_copy_blog.yaml b/.woodpecker/build_and_copy_blog.yaml index e201798..931c2c6 100644 --- a/.woodpecker/build_and_copy_blog.yaml +++ b/.woodpecker/build_and_copy_blog.yaml @@ -1,23 +1,16 @@ +when: + - branch: main + event: push + path: + include: ['sb/**'] + on_empty: false + 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 + - hugo -s sb --logLevel info - name: copy_to_server image: alpine @@ -34,26 +27,11 @@ steps: 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 - + - scp -r -i ~/.ssh/deployKey -P $SSH_PORT sb/public/* $SSH_USER@$SSH_HOST:$TARGET_PATH/ + - ssh -i ~/.ssh/deployKey -p $SSH_PORT $SSH_USER@$SSH_HOST 'touch $HOME/time_$(date +"%Y-%m-%d_%T_%N")' \ No newline at end of file diff --git a/archiv/eine-deployment-datei b/archiv/eine-deployment-datei new file mode 100644 index 0000000..94c3c54 --- /dev/null +++ b/archiv/eine-deployment-datei @@ -0,0 +1,5 @@ +In dieser Datei wird sich - +abhängig vom Deployment Schritt - +mal mehr, mal weniger ändern. + +Vielleicht läuft der Build Step nun. \ No newline at end of file