Files
astra-frontend/.gitlab-ci.yml
2022-12-19 22:24:16 +00:00

24 lines
440 B
YAML

image: docker:stable
stages:
- build
- deploy
build-job:
stage: build
tags:
- docker
script:
- docker info
- docker build -t andrusyakka/calendar-front .
deploy-job:
stage: deploy
tags:
- docker
only:
- master
script:
- echo "$DOCKER_PASSWORD" | docker https://docker-registry.dopcore.com login -u "$DOCKER_USER" --password-stdin
- docker push andrusyakka/calendar-front