19 lines
366 B
YAML
19 lines
366 B
YAML
kind: pipeline
|
|
name: publish
|
|
type: docker
|
|
|
|
platform:
|
|
os: linux
|
|
arch: arm64
|
|
|
|
steps:
|
|
- name: step1
|
|
image: alpine
|
|
commands:
|
|
- apk add git
|
|
- changed_charts=$(git show --name-only --pretty="format:" | grep '^charts' | perl -pe 's/^([^\/]*?\/[^\/]*?)\/.*/$1/' | sort | uniq)
|
|
- echo $changed_charts
|
|
|
|
image_pull_secrets:
|
|
- dockerconfigjson
|