diff --git a/.github/workflows/release-chart.yml b/.github/workflows/release-chart.yml index a8d3b86..cd10b03 100644 --- a/.github/workflows/release-chart.yml +++ b/.github/workflows/release-chart.yml @@ -17,11 +17,11 @@ jobs: uses: actions/checkout@v4 with: fetch-depth: 0 - - run: | - mkdir -p Charts/qryn-cloud-helm - cp -r ./* ./Charts/qryn-cloud-helm/ - ls -alF ./Charts - continue-on-error: true +# - run: | +# mkdir -p Charts/qryn-cloud-helm +# cp -r ./* ./Charts/qryn-cloud-helm/ +# ls -alF ./Charts +# continue-on-error: true - name: Configure Git run: | @@ -30,6 +30,8 @@ jobs: - name: Run chart-releaser uses: helm/chart-releaser-action@v1.6.0 + with: + charts_dir: charts env: CR_TOKEN: "${{ github.token }}" CR_SKIP_EXISTING: true diff --git a/.gitignore b/charts/qryn-cloud-helm/.gitignore similarity index 100% rename from .gitignore rename to charts/qryn-cloud-helm/.gitignore diff --git a/.helmignore b/charts/qryn-cloud-helm/.helmignore similarity index 100% rename from .helmignore rename to charts/qryn-cloud-helm/.helmignore diff --git a/Chart.yaml b/charts/qryn-cloud-helm/Chart.yaml similarity index 100% rename from Chart.yaml rename to charts/qryn-cloud-helm/Chart.yaml diff --git a/Readme.md b/charts/qryn-cloud-helm/Readme.md similarity index 100% rename from Readme.md rename to charts/qryn-cloud-helm/Readme.md diff --git a/templates/_helpers.tpl b/charts/qryn-cloud-helm/templates/_helpers.tpl similarity index 100% rename from templates/_helpers.tpl rename to charts/qryn-cloud-helm/templates/_helpers.tpl diff --git a/templates/ctrl.yaml b/charts/qryn-cloud-helm/templates/ctrl.yaml similarity index 100% rename from templates/ctrl.yaml rename to charts/qryn-cloud-helm/templates/ctrl.yaml diff --git a/templates/qryn.yaml b/charts/qryn-cloud-helm/templates/qryn.yaml similarity index 100% rename from templates/qryn.yaml rename to charts/qryn-cloud-helm/templates/qryn.yaml diff --git a/templates/reader-ingress.yaml b/charts/qryn-cloud-helm/templates/reader-ingress.yaml similarity index 100% rename from templates/reader-ingress.yaml rename to charts/qryn-cloud-helm/templates/reader-ingress.yaml diff --git a/templates/reader.yaml b/charts/qryn-cloud-helm/templates/reader.yaml similarity index 100% rename from templates/reader.yaml rename to charts/qryn-cloud-helm/templates/reader.yaml diff --git a/templates/writer-ingress.yaml b/charts/qryn-cloud-helm/templates/writer-ingress.yaml similarity index 100% rename from templates/writer-ingress.yaml rename to charts/qryn-cloud-helm/templates/writer-ingress.yaml diff --git a/templates/writer.yaml b/charts/qryn-cloud-helm/templates/writer.yaml similarity index 100% rename from templates/writer.yaml rename to charts/qryn-cloud-helm/templates/writer.yaml diff --git a/values.yaml b/charts/qryn-cloud-helm/values.yaml similarity index 100% rename from values.yaml rename to charts/qryn-cloud-helm/values.yaml