File tree Expand file tree Collapse file tree 4 files changed +12
-7
lines changed
helm/example-batch-job-controller Expand file tree Collapse file tree 4 files changed +12
-7
lines changed Original file line number Diff line number Diff line change 1616 # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
1717 - uses : actions/checkout@v4
1818
19+ - name : Set up Go
20+ uses : actions/setup-go@v5
21+ with :
22+ go-version-file : " go.mod"
23+
1924 - name : Configure Git
2025 run : |
2126 git config user.name "$GITHUB_ACTOR"
3843 VERSION=$(echo "${{github.event.release.tag_name }}" | sed 's/v//g')
3944 sed -i "s/^version:.*$/version: ${VERSION}/" ./helm/example-batch-job-controller/Chart.yaml
4045 sed -i "s/^appVersion:.*$/appVersion: v${VERSION}/" ./helm/example-batch-job-controller/Chart.yaml
41- make docs
46+ make helm- docs
4247 helm package ./helm/example-batch-job-controller/ --version $VERSION --app-version v$VERSION -d dist
4348 helm push dist/batch-job-controller-${VERSION}.tgz oci://ghcr.io/bakito/helm-charts
4449
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ ifeq (, $(shell which helm))
5050 $(shell curl https ://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | bash)
5151endif
5252
53- docs : tb.helm-docs update-docs
53+ helm- docs : tb.helm-docs update-docs
5454 @$(TB_HELM_DOCS )
5555
5656update-docs : tb.semver
Original file line number Diff line number Diff line change 11apiVersion : v2
22name : batch-job-controller
3- version : 1.4.7
4- appVersion : v1.4.7
3+ version : 1.4.8
4+ appVersion : v1.4.8
55description : Install batch job controller
66icon : https://emojigraph.org/media/google/man-construction-worker_1f477-200d-2642-fe0f.png
77sources :
Original file line number Diff line number Diff line change 11# batch-job-controller
22
3- ![ Version: 1.4.7 ] ( https://img.shields.io/badge/Version-1.4.7 -informational?style=flat-square ) ![ AppVersion: v1.4.7 ] ( https://img.shields.io/badge/AppVersion-v1.4.7 -informational?style=flat-square )
3+ ![ Version: 1.4.8 ] ( https://img.shields.io/badge/Version-1.4.8 -informational?style=flat-square ) ![ AppVersion: v1.4.8 ] ( https://img.shields.io/badge/AppVersion-v1.4.8 -informational?style=flat-square )
44
55Install batch job controller
66
@@ -9,14 +9,14 @@ Install batch job controller
99### oci
1010
1111``` console
12- helm install my-batch-job-controller oci://ghcr.io/bakito/helm-charts/batch-job-controller --version 1.4.7
12+ helm install my-batch-job-controller oci://ghcr.io/bakito/helm-charts/batch-job-controller --version 1.4.8
1313```
1414
1515### helm repository
1616
1717``` console
1818helm repo add bakito https://charts.bakito.net
19- helm install my-batch-job-controller bakito/batch-job-controller --version 1.4.7
19+ helm install my-batch-job-controller bakito/batch-job-controller --version 1.4.8
2020```
2121
2222## Values
You can’t perform that action at this time.
0 commit comments