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