Add continous deployment

This commit is contained in:
Marcel Kapfer 2022-02-08 19:56:37 +01:00
parent 2982f87c17
commit 76c0e9bb3b
Signed by: mmk2410
GPG Key ID: CADE6F0C09F21B09
1 changed files with 19 additions and 9 deletions

View File

@ -1,13 +1,23 @@
variables:
GIT_SUBMODULE_STRATEGY: recursive
before_script:
- apk add --no-cache openssh
- eval $(ssh-agent -s)
- echo "$SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add -
- mkdir ~/.ssh
- chmod 700 ~/.ssh
- echo "$SSH_KNOWN_HOSTS" | tr -d '\r' >> ~/.ssh/known_hosts
- chmod 644 ~/.ssh/known_hosts
build:
image: silex/emacs:27.2-alpine-ci
stage: build
script:
- emacs -Q --script .build/ox-hugo-build.el
- apk add --no-cache hugo
- hugo
artifacts:
paths:
- public
image: silex/emacs:27.2-alpine-ci
stage: build
script:
- emacs -Q --script .build/ox-hugo-build.el
- apk add --no-cache hugo rsync
- hugo
- rsync --archive --verbose --chown=gitlab-ci:www-data --delete --progress -e"ssh -p "$SSH_PORT"" public/ "$SSH_USER"@mmk2410.org:/var/www/mmk2410.org/
artifacts:
paths:
- public