Skip to content

Commit 9723794

Browse files
authored
Bump chart-releaser to v1.0.0 and prep chart-releaser-action for v1.0.0 (#34)
Signed-off-by: Scott Rigby <[email protected]>
1 parent cb4a7d9 commit 9723794

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ A GitHub action to turn a GitHub project into a self-hosted Helm chart repo, usi
1515

1616
For more information on inputs, see the [API Documentation](https://developer.github.com/v3/repos/releases/#input)
1717

18-
- `version`: The chart-releaser version to use (default: v1.0.0-beta.1)
18+
- `version`: The chart-releaser version to use (default: v1.0.0)
1919
- `charts_dir`: The charts directory
2020
- `charts_repo_url`: The GitHub Pages URL to the charts repo (default: `https://<owner>.github.io/<project>`)
2121

@@ -44,7 +44,7 @@ jobs:
4444
git config user.email "[email protected]"
4545
4646
- name: Run chart-releaser
47-
uses: helm/[email protected]-rc.1
47+
uses: helm/[email protected]
4848
env:
4949
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
5050
```

action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ branding:
66
icon: anchor
77
inputs:
88
version:
9-
description: "The chart-releaser version to use (default: v1.0.0-beta.1)"
9+
description: "The chart-releaser version to use (default: v1.0.0)"
1010
charts_dir:
1111
description: The charts directory
1212
default: charts

cr.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ set -o errexit
1818
set -o nounset
1919
set -o pipefail
2020

21-
DEFAULT_CHART_RELEASER_VERSION=v1.0.0-beta.1
21+
DEFAULT_CHART_RELEASER_VERSION=v1.0.0
2222

2323
: "${CR_TOKEN:?Environment variable CR_TOKEN must be set}"
2424

@@ -27,7 +27,7 @@ cat << EOF
2727
Usage: $(basename "$0") <options>
2828
2929
-h, --help Display help
30-
-v, --version The chart-releaser version to use (default: v1.0.0-beta.1)"
30+
-v, --version The chart-releaser version to use (default: v1.0.0)"
3131
-d, --charts-dir The charts directory (defaut: charts)
3232
-u, --charts-repo-url The GitHub Pages URL to the charts repo (default: https://<owner>.github.io/<repo>)
3333
-o, --owner The repo owner

0 commit comments

Comments
 (0)