2019-10-31 11:05:21 -07:00
|
|
|
version: 2.1
|
|
|
|
|
jobs:
|
|
|
|
|
lint:
|
|
|
|
|
docker:
|
2021-01-12 10:27:30 -08:00
|
|
|
- image: quay.io/helmpack/chart-testing:v3.3.1
|
2019-10-31 11:05:21 -07:00
|
|
|
steps:
|
|
|
|
|
- checkout
|
2021-05-21 17:59:30 +02:00
|
|
|
- run: ct lint --config .github/configs/ct-lint.yaml --lint-conf .github/configs/lintconf.yaml
|
2019-10-31 11:05:21 -07:00
|
|
|
publish:
|
|
|
|
|
docker:
|
2021-05-21 17:59:30 +02:00
|
|
|
- image: bash
|
2019-10-31 11:05:21 -07:00
|
|
|
steps:
|
2021-05-21 17:59:30 +02:00
|
|
|
- run: echo "Replaced by Github Workflow - https://github.com/argoproj/argo-helm/actions/workflows/publish.yml"
|
|
|
|
|
|
2019-10-31 11:05:21 -07:00
|
|
|
workflows:
|
|
|
|
|
version: 2
|
|
|
|
|
workflow:
|
|
|
|
|
jobs:
|
|
|
|
|
- lint
|
|
|
|
|
- publish:
|
|
|
|
|
requires:
|
2021-05-21 15:03:28 +02:00
|
|
|
- lint
|