disable token auth

This commit is contained in:
2019-10-23 22:37:56 +02:00
parent 5ffb14c5bb
commit aea64c6661
4 changed files with 27 additions and 1 deletions

20
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,20 @@
image: docker:stable
stages:
- build
variables:
IMAGE_NAME: registry.gitlab.com/jupyter-scipy-database-extension
build:
stage: build
tags:
- hottis
- linux
- docker
script:
- VERSION=`cat VERSION`
- docker build --tag $IMAGE_NAME:$VERSION .
- docker login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY
- docker push $IMAGE_NAME:$VERSION