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

30 lines
362 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-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:20:30 +01:00
- helm lint .
allow_failure: true
release:
stage: release
script:
- helm package .
artifacts:
paths:
- ${APP_NAME}*.tgz
expire_in: 90d
allow_failure: true