94 lines
3.7 KiB
YAML
94 lines
3.7 KiB
YAML
when:
|
|
- branch: [main, automation-test]
|
|
event: push
|
|
path:
|
|
include: ['Website/**']
|
|
on_empty: false
|
|
|
|
steps:
|
|
- name: log_start_time
|
|
image: alpine
|
|
commands:
|
|
- date -I'seconds'
|
|
|
|
- name: build_by_hugo
|
|
image: alpine:3.21
|
|
# vs image: alpine / welche version?
|
|
commands:
|
|
- date -I'seconds'
|
|
- cat /etc/alpine-release
|
|
- apk add --no-cache hugo
|
|
- hugo version
|
|
- cat Website/hugo.yaml
|
|
- sed -i 's+https://oer.community/+https://twdy.oer.community/+g' Website/hugo.yaml
|
|
- head Website/hugo.yaml
|
|
- mkdir Website/PROD
|
|
- hugo -s Website -d PROD --logLevel debug
|
|
- ls -la Website/PROD/index.html
|
|
- head Website/PROD/index.html
|
|
- echo $?
|
|
|
|
#- grep --version
|
|
#- grep -E . Website/PROD/index.html
|
|
#- grep -E ".*" Website/PROD/index.html
|
|
|
|
- which grep
|
|
- ls -l $(which grep)
|
|
|
|
#- grep -E ".+" Website/PROD/index.html
|
|
#- grep -E ".+schon .+" Website/PROD/index.html
|
|
#lokal läuft $busybox grep -E 'schon' Website/PROD/index.html | ????
|
|
- if grep -E "Team vollständig" Website/PROD/index.html; then echo "Blog Teamseite"; else echo "Webseite Startseite"; fi
|
|
- echo $?
|
|
|
|
# - grep 'schon' Website/PROD/index.html
|
|
# - grep 'schon mal selbst Materialien erstellt oder arbeitest in einer Community' Website/PROD/index.html
|
|
# - grep -E 'schon mal selbst Materialien erstellt oder arbeitest in einer Community' Website/PROD/index.html
|
|
# - grep -e 'schon mal selbst Materialien erstellt oder arbeitest in einer Community' Website/PROD/index.html
|
|
- if grep -i -E "Du hast .+ selbst Materialien erstellt .+ in einer Community" Website/PROD/index.html && grep "zielt FOERBICO auf die Vernetzung" Website/PROD/index.html; then echo "Webseite Startseite"; else echo "was anderes; warum?"; fi
|
|
- echo $?
|
|
|
|
- name: build_by_hugo_OLD
|
|
image: hugomods/hugo
|
|
commands:
|
|
- mkdir Website/PRODold
|
|
- hugo version
|
|
#- hugo -s Website -d PRODold --logLevel debug
|
|
# - grep "zielt FOERBICO auf die Vernetzung" Website/PRPRODoldOD/index.html # enthält index.html auch den Inhalt der Startseite?
|
|
# - grep localhost Website/PRODold/index.html # hat sich beim build ein Fehler eingeschlichen?
|
|
# - grep -E 'href.+favicon.ico' Website/PRODold/index.html | cut -d= -f3 # baseURL ausgeben
|
|
- if grep -E "Team vollständig" Website/PROD/index.html; then echo "Blog Teamseite"; else echo "Webseite Startseite"; fi
|
|
- echo $?
|
|
|
|
- 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 Website/PROD/canva/* $SSH_USER@$SSH_HOST:$DOMAIN_FOLDER/$TARGET_PATH/
|
|
- scp -r -i ~/.ssh/deployKey -P $SSH_PORT Website/PROD/* $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')"
|
|
|
|
- name: log_end_time
|
|
image: alpine
|
|
commands:
|
|
- date -I'seconds'
|