pelican-website-ge/.gitlab-ci.yml

19 lines
330 B
YAML
Raw Normal View History

2021-09-21 13:54:31 +02:00
stages:
- build
- test
- deploy
image: docker:19.03.12
before_script:
- docker info
2021-09-21 14:05:41 +02:00
- docker login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY
2021-09-21 13:54:31 +02:00
build:
stage: build
2021-09-21 14:03:01 +02:00
tags:
- integration
2021-09-21 13:54:31 +02:00
script:
- docker build -t $CI_REGISTRY_IMAGE:${TAG:-latest} .
- docker push $CI_REGISTRY_IMAGE:${TAG:-latest}