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

18 lines
264 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
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}