aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Johannes Christ <[email protected]>2018-09-17 21:06:51 +0200
committerGravatar Johannes Christ <[email protected]>2018-09-17 21:06:51 +0200
commiteccdd605f7c06e8d7461e942706cd1810b5491e5 (patch)
treec640d47c53b3e232dab8ad2d4bc73ff7748f4f07
parentFix typo. (diff)
Rename `deploy` to `push` stage.
-rw-r--r--.gitlab-ci.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 52643e93..0faeea57 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,7 +1,7 @@
stages:
- lint
- test
- - deploy
+ - publish
image: python:3.7-alpine
.test-template: &test-template
@@ -74,7 +74,7 @@ test-3.6-stretch:
- python manage.py migrate
pages:
- stage: deploy
+ stage: publish
dependencies:
- test-3.7-alpine
before_script:
@@ -88,7 +88,7 @@ pages:
push-django:
image: docker:stable-git
- stage: deploy
+ stage: publish
script:
- echo "$DOCKER_PASSWORD" | docker login --username "$DOCKER_USERNAME" --password-stdin
- docker build -t pythondiscord/django:latest .