monolito_djanco_poonto/.gitlab-ci.yml
2025-01-13 14:38:17 +00:00

47 lines
566 B
YAML

stages:
- build
- check
- publish
- deploy
variables:
PROJECT_NAME: "api-face-recognition"
build:
stage: build
script:
- make build
only:
- main
tags:
- runner_tars
check:
stage: check
script:
- make check
only:
- main
tags:
- runner_tars
publish:
stage: publish
script:
- make login-aws
- make publish
only:
- main
tags:
- runner_tars
deploy:
stage: deploy
script:
- make deploy-ci
only:
- main
tags:
- runner_tars