Tom/.gitlab-ci.yml

21 lines
707 B
YAML
Raw Normal View History

2021-07-27 22:51:52 +02:00
stages:
- build
- test
- deploy
services:
- docker:stable-dind
docker-build:
image: docker:stable
2021-07-27 22:41:23 +02:00
stage: build
2021-07-27 22:24:30 +02:00
script:
2021-07-27 22:59:04 +02:00
- docker pull registry.gitlab.com/ConfrerieDuKassoulait/TwitchBot:latest || true
2021-07-27 23:02:15 +02:00
- docker build --cache-from registry.gitlab.com/ConfrerieDuKassoulait/TwitchBot:latest -t TwitchBot:latest .
2021-07-27 22:59:04 +02:00
2021-07-27 23:02:15 +02:00
- docker tag TwitchBot:latest registry.gitlab.com/ConfrerieDuKassoulait/TwitchBot:${CI_COMMIT_SHORT_SHA}
- docker tag TwitchBot:latest registry.gitlab.com/ConfrerieDuKassoulait/TwitchBot:latest
2021-07-27 22:59:04 +02:00
- docker push registry.gitlab.com/ConfrerieDuKassoulait/TwitchBot:${CI_COMMIT_SHORT_SHA}
- docker push registry.gitlab.com/ConfrerieDuKassoulait/TwitchBot:latest