protokolliertes deployment

This commit is contained in:
Jörg Lohrer 2024-10-30 04:45:47 +00:00
parent c2a3fb51f5
commit 02360a8982

View file

@ -22,7 +22,11 @@ steps:
commands:
- hugo version
- git -C sb submodule update --init --recursive
- hugo --cleanDestinationDir -s sb --logLevel info
- hugo --cleanDestinationDir -s sb --logLevel debug --debug --logFile hugo_build.log
- cat hugo_build.log # zeigt das vollständige Hugo-Log im CI-Protokoll
# Installiere das `tree`-Tool, um die Struktur von `sb/public` anzuzeigen
- apk add --no-cache tree
- tree sb/public # zeigt die Dateistruktur der Ausgabe an
- name: copy_to_server
image: alpine
@ -44,6 +48,7 @@ steps:
- chmod 600 ~/.ssh/deployKey
- ssh-keyscan -H -p $SSH_PORT $SSH_HOST 2>/dev/null >> ~/.ssh/known_hosts
- chmod 600 ~/.ssh/known_hosts
# TARGET_PATH protokollieren
- echo "Target Path for Deployment: $TARGET_PATH"
- ssh -i ~/.ssh/deployKey -p $SSH_PORT $SSH_USER@$SSH_HOST "mkdir -p $TARGET_PATH"
- scp -r -i ~/.ssh/deployKey -P $SSH_PORT sb/public/* $SSH_USER@$SSH_HOST:$TARGET_PATH/