diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3652cdb..d1734cf 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,13 +1,13 @@ stages: - - test + - build - release # Test if the image can be built test:build: - stage: test + stage: build tags: - - test - build + - test image: docker:latest script: - docker build . @@ -17,10 +17,10 @@ test:build: # Push images of tags to private registry release:image: - stage: release + stage: build tags: - - release - build + - release image: docker:latest script: - docker login -u "${DOCKER_USERNAME}" -p "${DOCKER_PASSWORD}" "${DOCKER_REGISTRY_HOST}"