fab-city-os-core-chart/.gitlab-ci.yml

34 lines
439 B
YAML
Raw Normal View History

2022-06-27 01:33:57 +02:00
---
default:
image: alpine/helm:3.10.2
tags:
- kubernetes
- flying-circus
2022-11-23 17:46:59 +01:00
cache:
- key: "$CI_COMMIT_REF_SLUG"
paths:
- charts
2022-06-27 01:33:57 +02:00
2022-11-23 11:34:46 +01:00
variables:
APP_NAME: fcoscore
2022-06-27 01:33:57 +02:00
stages:
- test
2022-11-23 17:20:30 +01:00
- release
2022-06-27 01:33:57 +02:00
2022-11-23 17:20:30 +01:00
lint:
2022-06-27 01:33:57 +02:00
stage: test
script:
2022-11-23 17:26:44 +01:00
- helm dependency update
2022-11-23 17:20:30 +01:00
- helm lint .
release:
stage: release
script:
- helm package .
artifacts:
paths:
- ${APP_NAME}*.tgz
expire_in: 90d
allow_failure: true