Skip to content

Commit 947741f

Browse files
committed
fix helm chart app version in goreleaser script fixes #8
1 parent 77a3a91 commit 947741f

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -122,3 +122,6 @@ bin
122122
/dist
123123

124124
gomock*
125+
126+
mysecret.json
127+
mysealedsecret.json

.goreleaser.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
before:
22
hooks:
3-
- helm package ./charts/sealed-secrets-web/ --version {{ .Version }} --app-version {{ .Version }} -d {{ .Env.CR_PACKAGE_PATH }}
3+
- helm package ./charts/sealed-secrets-web/ --version {{ .Version }} --app-version v{{ .Version }} -d {{ .Env.CR_PACKAGE_PATH }}
44
builds:
55
- skip: true
66
main: ./main.go

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
```sh
2323
helm repo add bakito https://bakito.github.io/helm-charts
24-
helm up
24+
helm repo update
2525

2626
helm upgrade --install sealed-secrets-web bakito/sealed-secrets-web
2727
```

charts/sealed-secrets-web/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ maintainers:
77
- name: bakito
88
url: https://github.com/bakito
99
name: sealed-secrets-web
10-
version: 2.5.0
10+
version: 2.6.0

0 commit comments

Comments
 (0)