Files
s3uploader/.gitlab-ci.yml
T
argoyle c7faba91d7 ci: remove unused docker configuration from CI files
Removes unnecessary Docker host variables and service settings from 
`.gitlab-ci.yml` to simplify the CI/CD pipeline configuration. This 
streamlines the build process by focusing on the essential tasks 
and reduces potential configuration errors.
2024-12-05 10:56:17 +01:00

33 lines
609 B
YAML

include:
- template: 'Workflows/MergeRequest-Pipelines.gitlab-ci.yml'
stages:
- build
- deploy-prod
image: buildtool/build-tools:${BUILDTOOLS_VERSION}
build:
stage: build
script:
- build
- curl -Os https://uploader.codecov.io/latest/linux/codecov
- chmod +x codecov
- ./codecov -t ${CODECOV_TOKEN} -R $CI_PROJECT_DIR -C $CI_COMMIT_SHA -r $CI_PROJECT_PATH
- push
artifacts:
paths:
- release/
- k8s
deploy-to-prod:
stage: deploy-prod
script:
- echo Deploy to prod.
- deploy prod
environment:
name: prod
rules:
- if: $CI_COMMIT_BRANCH == "main"
when: manual