47 lines
566 B
YAML
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
|
|
|