mirror of
https://github.com/kyverno/kyverno.git
synced 2024-12-14 11:57:48 +00:00
chore: change charts registry url (#4768)
Signed-off-by: Batuhan Apaydın <batuhan.apaydin@trendyol.com> Signed-off-by: Batuhan Apaydın <batuhan.apaydin@trendyol.com> Co-authored-by: Charles-Edouard Brétéché <charled.breteche@gmail.com>
This commit is contained in:
parent
688b4fb8e3
commit
e258004e76
2 changed files with 4 additions and 3 deletions
6
.github/workflows/helm-release.yaml
vendored
6
.github/workflows/helm-release.yaml
vendored
|
@ -76,6 +76,6 @@ jobs:
|
||||||
for dir in `find charts-tmp -maxdepth 1 -mindepth 1 -type d -print`; do
|
for dir in `find charts-tmp -maxdepth 1 -mindepth 1 -type d -print`; do
|
||||||
chart=${dir##*/}
|
chart=${dir##*/}
|
||||||
echo "Found chart: ${chart}"
|
echo "Found chart: ${chart}"
|
||||||
helm package charts-tmp/${chart} --destination dist
|
helm package charts-tmp/${chart} --destination .dist
|
||||||
helm push dist/${chart}-*.tgz oci://ghcr.io/${GITHUB_REPOSITORY}
|
helm push .dist/${chart}-*.tgz oci://ghcr.io/${{ github.repository_owner }}/charts
|
||||||
done
|
done
|
||||||
|
|
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -12,3 +12,4 @@ kubectl-kyverno
|
||||||
.DS_Store
|
.DS_Store
|
||||||
.tools
|
.tools
|
||||||
.gopath
|
.gopath
|
||||||
|
.dist
|
||||||
|
|
Loading…
Reference in a new issue