diff options
| author | 2018-09-05 19:47:50 +0200 | |
|---|---|---|
| committer | 2018-09-05 19:47:50 +0200 | |
| commit | 5b19fdadc3ddcdfdf4a970b15c3fbc03d507a8d1 (patch) | |
| tree | 662b2c44cacc12777961a4ecdf4a0d27f5b280fe | |
| parent | Add the `STATIC_ROOT` setting. (diff) | |
Use proper registry.
| -rw-r--r-- | .gitlab-ci.yml | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 70c53f34..5c32e7f4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -104,13 +104,13 @@ pages:              - public          expire_in: 30 days -push-django-image: +push-django:      image: docker:stable-git      stage: deploy      script:          - docker build -t pythondiscord/django:latest . -        - echo "$DOCKER_PASSWORD" | docker login --username "$DOCKER_USERNAME" --password-stdin registry.gitlab.com -        - docker push registry.gitlab.com/python-discord/projects/site/django:latest +        - echo "$DOCKER_PASSWORD" | docker login --username "$DOCKER_USERNAME" --password-stdin gitlab.com +        - docker push pythondiscord/django:latest      only:          - master          - django  |