File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed
Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change 2525 sudo install cr /usr/local/bin/
2626 rm -f cr chart-releaser_1.4.1_linux_amd64.tar.gz
2727
28+ - name : Install Helm
29+ run : |
30+ curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash
31+
32+ - name : Login to GitHub Container Registry
33+ run : echo "${{ secrets.GITHUB_TOKEN }}" | helm registry login ghcr.io -u ${{ github.actor }} --password-stdin
34+
2835 - name : Package Chart
2936 run : cr package deploy/helm/clickhouse-operator
3037
7380 echo " HELM_GITHUB_REPOSITORY: ${{ vars.HELM_GITHUB_REPOSITORY }}"
7481 echo " HELM_GITHUB_TOKEN: [SET]"
7582
83+ - name : Push Helm Chart to OCI Registry
84+ run : |
85+ CHART_PATH=$(ls .cr-release-packages/altinity-clickhouse-operator-*.tgz)
86+ helm push "${CHART_PATH}" oci://ghcr.io/altinity/clickhouse-operator-helm-chart
87+
7688 - name : Upload Release Artifacts to Helm Repo
7789 run : |
7890 cr upload \
You can’t perform that action at this time.
0 commit comments