From dcbbca2fea4b85b8fc0b28526b169d401866127d Mon Sep 17 00:00:00 2001 From: akvlad Date: Wed, 12 Jun 2024 18:23:44 +0300 Subject: [PATCH] fix go releaser --- .github/workflows/release-chart.yml | 12 +++++++----- .gitignore => charts/qryn-cloud-helm/.gitignore | 0 .helmignore => charts/qryn-cloud-helm/.helmignore | 0 Chart.yaml => charts/qryn-cloud-helm/Chart.yaml | 0 Readme.md => charts/qryn-cloud-helm/Readme.md | 0 .../qryn-cloud-helm/templates}/_helpers.tpl | 0 .../qryn-cloud-helm/templates}/ctrl.yaml | 0 .../qryn-cloud-helm/templates}/qryn.yaml | 0 .../qryn-cloud-helm/templates}/reader-ingress.yaml | 0 .../qryn-cloud-helm/templates}/reader.yaml | 0 .../qryn-cloud-helm/templates}/writer-ingress.yaml | 0 .../qryn-cloud-helm/templates}/writer.yaml | 0 values.yaml => charts/qryn-cloud-helm/values.yaml | 0 13 files changed, 7 insertions(+), 5 deletions(-) rename .gitignore => charts/qryn-cloud-helm/.gitignore (100%) rename .helmignore => charts/qryn-cloud-helm/.helmignore (100%) rename Chart.yaml => charts/qryn-cloud-helm/Chart.yaml (100%) rename Readme.md => charts/qryn-cloud-helm/Readme.md (100%) rename {templates => charts/qryn-cloud-helm/templates}/_helpers.tpl (100%) rename {templates => charts/qryn-cloud-helm/templates}/ctrl.yaml (100%) rename {templates => charts/qryn-cloud-helm/templates}/qryn.yaml (100%) rename {templates => charts/qryn-cloud-helm/templates}/reader-ingress.yaml (100%) rename {templates => charts/qryn-cloud-helm/templates}/reader.yaml (100%) rename {templates => charts/qryn-cloud-helm/templates}/writer-ingress.yaml (100%) rename {templates => charts/qryn-cloud-helm/templates}/writer.yaml (100%) rename values.yaml => charts/qryn-cloud-helm/values.yaml (100%) 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