diff --git a/.github/cr.yaml b/.github/cr.yaml index 26aabafbbb9..50c195a77f3 100644 --- a/.github/cr.yaml +++ b/.github/cr.yaml @@ -4,7 +4,6 @@ repo: apps charts-dir: charts/* charts_repo_url: "https://charts.truecharts.org" excluded-charts: common-test -pages-branch: "master" +pages-branch: "gh-pages" SkipExisting: true skipExisting: true -index-path: "chartsrepo/index.yaml" diff --git a/.github/workflows/apps.release.yaml b/.github/workflows/apps.release.yaml index 6e9e7096128..089f49af835 100644 --- a/.github/workflows/apps.release.yaml +++ b/.github/workflows/apps.release.yaml @@ -21,14 +21,6 @@ jobs: fetch-depth: 100 token: ${{ secrets.BOT_TOKEN }} - - name: Checkout - uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 # tag=v3 - with: - fetch-depth: 1 - repository: truecharts/charts - token: ${{ secrets.BOT_TOKEN }} - path: chartsrepo - - name: Checkout uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 # tag=v3 with: diff --git a/.github/workflows/apps.test.yaml b/.github/workflows/apps.test.yaml index ab56c38bc0d..feff96dfc91 100644 --- a/.github/workflows/apps.test.yaml +++ b/.github/workflows/apps.test.yaml @@ -118,8 +118,8 @@ jobs: - name: update helm repo cache run: | - helm repo add truecharts-old https://truecharts.org" - helm repo add truecharts https://charts.truecharts.org" + helm repo add truecharts-old https://truecharts.org + helm repo add truecharts https://charts.truecharts.org helm repo add truecharts-library https://library-charts.truecharts.org helm repo add bitnami https://charts.bitnami.com/bitnami helm repo add metallb https://metallb.github.io/metallb diff --git a/tools/build-release.sh b/tools/build-release.sh index dc0c6d9bfc3..e877a289b5c 100755 --- a/tools/build-release.sh +++ b/tools/build-release.sh @@ -67,7 +67,6 @@ main() { gen_dh_cat release_charts update_index - upload_index fi validate_catalog upload_catalog @@ -744,17 +743,4 @@ update_index() { } export -f update_index -upload_index() { - cd chartsrepo - echo "uploading index.yaml..." - git config user.name "TrueCharts-Bot" - git config user.email "bot@truecharts.org" - git add --all - git commit -sm "Commit new Chart releases for TrueCharts" || exit 0 - git push - cd - - rm -rf chartsrepo -} -export -f upload_index - main "$@"