This commit is contained in:
2023-05-21 08:21:45 -05:00
parent 7d0a9e4cce
commit a0505c1891
8 changed files with 90 additions and 181 deletions

38
pipelines/golang.yml Normal file
View File

@@ -0,0 +1,38 @@
stages:
- build
- package
- publish
include:
- project: 'developerdurp/yml'
ref: main
file:
- 'jobs/version.yml'
- 'jobs/sonarqube.yml'
- 'jobs/docker.yml'
- 'jobs/helm.yml'
version:
extends: .version
stage: .pre
only:
- main
- /^release*/
sonarqube:
extends: .sonarcloud-check
stage: .pre
docker:
extends: .docker-build-container
stage: publish
only:
- main
- /^release*/
helm:
extends: .helm-createchart
stage: publish
only:
- main
- /^release*/