Remove stray artifacts from previous builds

This commit is contained in:
Daniel Molkentin 2019-08-14 00:51:17 +02:00
parent ae512a738e
commit 2229e2ac05

View file

@ -20,6 +20,7 @@ build_pages:
expire_in: "1 week" expire_in: "1 week"
untracked: true untracked: true
script: script:
- rm -rf public/*
- apk add --no-cache --upgrade hugo - apk add --no-cache --upgrade hugo
- hugo $(cat .hugo-params) - hugo $(cat .hugo-params)
@ -53,7 +54,7 @@ deploy_staging:
- eval $(ssh-agent -s) - eval $(ssh-agent -s)
- echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config - echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config
- echo "$PRIVATE_KEY" | ssh-add - - echo "$PRIVATE_KEY" | ssh-add -
- rsync -e "ssh -l deploy -p 31337" -av public/ 195.54.164.87:staging - rsync -e "ssh -l deploy -p 31337" -av --delete public/ 195.54.164.87:staging
when: on_success when: on_success
environment: environment:
name: staging name: staging
@ -78,7 +79,7 @@ deploy_production:
- eval $(ssh-agent -s) - eval $(ssh-agent -s)
- echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config - echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config
- echo "$PRIVATE_KEY" | ssh-add - - echo "$PRIVATE_KEY" | ssh-add -
- rsync -e "ssh -l deploy -p 31337" -av public/ 195.54.164.87:production - rsync -e "ssh -l deploy -p 31337" -av --delete public/ 195.54.164.87:production
when: on_success when: on_success
environment: environment:
name: production name: production