2020-01-17 20:19:12 +00:00
|
|
|
stages:
|
|
|
|
- build
|
|
|
|
- deploy
|
|
|
|
|
2020-06-11 14:50:41 +00:00
|
|
|
image: code.ungleich.ch:5050/ungleich-public/ungleich-staticcms:latest
|
2020-01-17 20:19:12 +00:00
|
|
|
variables:
|
|
|
|
BUILDDIR: "build/"
|
|
|
|
|
|
|
|
build:
|
|
|
|
stage: build
|
|
|
|
script:
|
|
|
|
- make build
|
|
|
|
artifacts:
|
|
|
|
expire_in: 12 hours
|
|
|
|
paths:
|
|
|
|
- "build/"
|
|
|
|
|
|
|
|
deploy:
|
|
|
|
stage: deploy
|
|
|
|
only:
|
|
|
|
- master
|
|
|
|
environment:
|
|
|
|
name: production
|
|
|
|
url: https://ungleich.ch/
|
|
|
|
before_script:
|
|
|
|
# Configure the SSH Agent
|
|
|
|
- eval $(ssh-agent -s)
|
|
|
|
- echo "$CD_SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add - > /dev/null
|
|
|
|
- mkdir -p ~/.ssh
|
|
|
|
- echo "$CD_SSH_SERVER_HOSTKEYS" > ~/.ssh/known_hosts
|
|
|
|
- chmod 644 ~/.ssh/known_hosts
|
|
|
|
script:
|
|
|
|
- make deploy
|