59 lines
1.4 KiB
YAML
59 lines
1.4 KiB
YAML
---
|
|
when:
|
|
event:
|
|
- push
|
|
|
|
.chart-testing-image: &chart-testing-image
|
|
image: quay.io/helmpack/chart-testing:v3.10.1
|
|
|
|
clone:
|
|
git:
|
|
image: woodpeckerci/plugin-git
|
|
settings:
|
|
partial: false
|
|
|
|
steps:
|
|
changed:
|
|
<<: *chart-testing-image
|
|
name: Check changed charts
|
|
commands:
|
|
- git fetch origin
|
|
- ct lint --target-branch main --print-config --debug
|
|
- ct list-changed --target-branch main > .changed
|
|
|
|
lint:
|
|
<<: *chart-testing-image
|
|
name: Lint charts
|
|
commands:
|
|
- git fetch origin
|
|
- |
|
|
if [ -s .changed ]; then
|
|
ct lint --target-branch main --validate-maintainers=false
|
|
fi
|
|
|
|
release:
|
|
<<: *chart-testing-image
|
|
name: Release charts
|
|
when:
|
|
- branch: main
|
|
secrets:
|
|
- registry_password
|
|
environment:
|
|
- DISABLE_FORCE_OVERWRITE='true'
|
|
- ALLOW_OVERWRITE='false'
|
|
- REGISTRY_URL=zot.badhouseplants.net
|
|
- REGISTRY_USERNAME=woody
|
|
commands:
|
|
- |
|
|
helm registry login $REGISTRY_URL \
|
|
--username $REGISTRY_USERNAME \
|
|
--password $REGISTRY_PASSWORD
|
|
- |
|
|
for chart in $(find charts -maxdepth 1 -mindepth 1 -type d); do
|
|
helm package $chart -d chart-packages;
|
|
done
|
|
- |
|
|
for chart in $(find chart-packages -maxdepth 1 -mindepth 1 -type f); do
|
|
helm push $chart oci://$REGISTRY_URL/softplayer/helm
|
|
done
|