This commit is contained in:
Dorian Zedler 2021-10-07 11:55:14 +02:00
parent e7caf99c00
commit dc93b3cbfb
Signed by: dorian
GPG Key ID: 989DE36109AFA354
1 changed files with 21 additions and 0 deletions

21
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,21 @@
build:
image: klakegg/hugo:ext-alpine-ci
stage: build
artifacts:
paths:
- public
expire_in: 1 week
deploy_production:
type: deploy
image: ubuntu:latest
environment:
name: production
url: itsblue.de
script:
- apt update
- apt install -y openssh-client
- chmod 700 $DEPLOYMENT_SSH_KEY
- scp -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -i $DEPLOYMENT_SSH_KEY -r ./public/* root@10.10.0.1:/opt/lamp/www/itsblue.de.new
#only:
# - master