2023-02-20 04:22:58 +00:00
|
|
|
pipeline:
|
|
|
|
build:
|
|
|
|
image: klakegg/hugo:ext-debian-ci
|
|
|
|
commands:
|
2023-02-20 04:28:23 +00:00
|
|
|
- git submodule foreach 'git fetch origin; git checkout $(git describe --tags `git rev-list --tags --max-count=1`);'
|
2023-02-20 04:22:58 +00:00
|
|
|
- hugo
|
|
|
|
|
|
|
|
deploy:
|
2023-02-20 05:03:07 +00:00
|
|
|
image: codingkoopa/git-rsync-openssh
|
2023-02-20 04:22:58 +00:00
|
|
|
commands:
|
2023-02-20 04:52:49 +00:00
|
|
|
- echo "151.101.210.132 deb.debian.org" >> /etc/hosts
|
2023-02-20 04:46:14 +00:00
|
|
|
- echo "nameserver 1.1.1.1" > /etc/resolv.conf
|
2023-02-20 04:28:23 +00:00
|
|
|
- mkdir ~/.ssh && chmod -R 700 ~/.ssh
|
2023-02-20 05:03:07 +00:00
|
|
|
# - apt update -y && apt install openssh-client rsync -y
|
2023-02-20 04:22:58 +00:00
|
|
|
- echo "$SSH_HOST_KEY" > ~/.ssh/known_hosts
|
|
|
|
- echo 'echo "$SSH_PASSPHRASE"' > ~/.ssh/.print_ssh_password
|
|
|
|
- eval $(ssh-agent -s)
|
2023-02-20 05:25:22 +00:00
|
|
|
- echo "$SSH_PRIVATE_KEY" > ~/.ssh/backy.cybershell.xyz
|
2023-02-20 05:27:12 +00:00
|
|
|
- chmod 600 ~/.ssh/backy.cybershell.xyz
|
2023-02-20 05:25:22 +00:00
|
|
|
- DISPLAY=":0.0" SSH_ASKPASS=~/.ssh/.print_ssh_password setsid ssh-add ~/.ssh/backy.cybershell.xyz
|
2023-02-20 04:22:58 +00:00
|
|
|
- rsync -atv --delete --progress public/ backy@backy.cybershell.xyz:docs
|
|
|
|
- rsync -atv --delete --progress vangen/ backy@backy.cybershell.xyz:vangen-go
|
|
|
|
|
|
|
|
branches: master
|