diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 92686ce..8efce09 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -209,6 +209,14 @@ build-auth: BUILDTARGET: runtime SERVICE_NAME: auth +build-competition: + <<: *build-config + variables: + IMAGE_NAME: $BASE_IMAGE_NAME/competition + CONTAINERFILE: Containerfile + BUILDTARGET: runtime + SERVICE_NAME: competition + golangci-lint: stage: lint image: docker.io/golangci/golangci-lint:latest-alpine @@ -281,6 +289,14 @@ sast-image-auth: dependencies: - build-auth +sast-image-competition: + <<: *trivy-image-scan + variables: + IMAGE_NAME: $BASE_IMAGE_NAME/competition + IMAGE_TYPE: competition + dependencies: + - build-competition + tag-migrate: <<: *tag-config variables: @@ -296,6 +312,11 @@ tag-auth: variables: IMAGE_NAME: $BASE_IMAGE_NAME/auth +tag-competition: + <<: *tag-config + variables: + IMAGE_NAME: $BASE_IMAGE_NAME/competition + # webhook-backend-deploy: # <<: *webhook-config # stage: deploy