Files
yml/templates/build-container.tpl.yml
2023-04-09 19:39:37 +00:00

25 lines
434 B
YAML

stages:
- build
build-container:
image: docker:20.10.16
variables:
DOCKER_TLS_CERTDIR: "/certs"
services:
- docker:20.10.16-dind
stage: build
script:
- ./scripts/docker-login.sh
- ./scripts/docker-build.sh
only:
- main
HelmChart:
image: dtzar/helm-kubectl
stage: build
script:
- ./scripts/helm-addrepo.sh
- ./scripts/helm-package.sh
- ./scripts/helm-push.sh
only:
- main