Don't deploy on schedules!

This commit is contained in:
Tao Bojlén 2019-08-08 11:26:40 +00:00
parent 8fbfb1ce69
commit d1b3f3f023
1 changed files with 8 additions and 0 deletions

View File

@ -52,6 +52,8 @@ deploy-backend-develop:
image: ilyasemenov/gitlab-ci-git-push image: ilyasemenov/gitlab-ci-git-push
only: only:
- develop - develop
except:
- schedules
script: script:
- git-push dokku@api-develop.fediverse.space:phoenix develop - git-push dokku@api-develop.fediverse.space:phoenix develop
@ -62,6 +64,8 @@ deploy-gephi-develop:
name: develop name: develop
only: only:
- develop - develop
except:
- schedules
script: script:
- git-push dokku@api-develop.fediverse.space:gephi develop - git-push dokku@api-develop.fediverse.space:gephi develop
@ -73,6 +77,8 @@ deploy-backend-production:
image: ilyasemenov/gitlab-ci-git-push image: ilyasemenov/gitlab-ci-git-push
only: only:
- master - master
except:
- schedules
script: script:
- git-push dokku@api.fediverse.space:phoenix master - git-push dokku@api.fediverse.space:phoenix master
@ -83,5 +89,7 @@ deploy-gephi-production:
name: production name: production
only: only:
- master - master
except:
- schedules
script: script:
- git-push dokku@api.fediverse.space:gephi master - git-push dokku@api.fediverse.space:gephi master