We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee39bd1 commit a08df27Copy full SHA for a08df27
.github/workflows/_helm.yml
@@ -42,7 +42,7 @@ jobs:
42
set -xe
43
44
mkdir -p charts
45
- for i in Charts/*; do
+ for i in $(find Charts -type d -maxdepth 1 -mindepth 1); do
46
if [[ ${i} =~ ^.*-ioc$ ]]; then
47
echo "Skipping IOC schema chart: ${i}"
48
continue
@@ -65,7 +65,7 @@ jobs:
65
set -x
66
67
echo "${{ secrets.GITHUB_TOKEN }}" | helm registry login ghcr.io/${{ github.repository_owner }} --username ${{ github.repository_owner }} --password-stdin
68
- REGISTRY=ghcr.io/${{github.repository_owner }}/charts
+ REGISTRY=oci://ghcr.io/${{github.repository_owner }}/charts
69
for i in charts/*.tgz; do
70
- helm push "${i}" ${REGISTRY}
+ helm push "${i}" ${REGISTRY,,}
71
done
0 commit comments