fab-city-os-core-chart/.gitlab-ci.yml
2022-11-23 17:20:30 +01:00

30 lines
362 B
YAML

---
default:
image: alpine/helm:3.10.2
tags:
- kubernetes
- flying-circus
variables:
APP_NAME: fcoscore
stages:
- test
- release
lint:
stage: test
script:
- helm lint .
allow_failure: true
release:
stage: release
script:
- helm package .
artifacts:
paths:
- ${APP_NAME}*.tgz
expire_in: 90d
allow_failure: true