File tree Expand file tree Collapse file tree 2 files changed +4
-16
lines changed Expand file tree Collapse file tree 2 files changed +4
-16
lines changed Original file line number Diff line number Diff line change 99jobs :
1010 release :
1111 runs-on : ubuntu-latest
12+ permissions :
13+ contents : write
1214 steps :
1315 - name : Checkout
1416 uses : actions/checkout@v4
2325 env :
2426 CR_TOKEN : " ${{ secrets.GITHUB_TOKEN }}"
2527 CR_SKIP_EXISTING : true
26-
27- - name : Login to DockerHub
28- uses : docker/login-action@v2
29- with :
30- username : ${{ secrets.DOCKER_USERNAME }}
31- password : ${{ secrets.DOCKER_PASSWORD }}
32- - name : Push charts to DockerHub
33- run : |
34- shopt -s nullglob
35- for pkg in .cr-release-packages/*.tgz; do
36- if [ -z "${pkg:-}" ]; then
37- break
38- fi
39- helm push "${pkg}" "oci://docker.io/${GITHUB_REPOSITORY_OWNER}/helm-charts"
40- done
28+ CR_RELEASE_NAME_TEMPLATE : " {{ .Name }}-helm-{{ .Version }}"
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ type: application
1515# This is the chart version. This version number should be incremented each time you make changes
1616# to the chart and its templates, including the app version.
1717# Versions are expected to follow Semantic Versioning (https://semver.org/)
18- version : 0. 1.0
18+ version : 1.0.1
1919
2020# This is the version number of the application being deployed. This version number should be
2121# incremented each time you make changes to the application. Versions are not expected to
You can’t perform that action at this time.
0 commit comments