monolito_djanco_poonto/.gitlab-ci.yml
2024-11-28 18:02:58 +00:00

47 lines
558 B
YAML

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