Skip to content

Commit

Permalink
Bump chart-releaser to v1.0.0 and prep chart-releaser-action for v1.0…
Browse files Browse the repository at this point in the history
….0 (#34)

Signed-off-by: Scott Rigby <scott@r6by.com>
  • Loading branch information
scottrigby authored Aug 10, 2020
1 parent cb4a7d9 commit 9723794
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ A GitHub action to turn a GitHub project into a self-hosted Helm chart repo, usi

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

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

Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
- name: Run chart-releaser
uses: helm/chart-releaser-action@v1.0.0-rc.1
uses: helm/chart-releaser-action@v1.0.0
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
```
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ branding:
icon: anchor
inputs:
version:
description: "The chart-releaser version to use (default: v1.0.0-beta.1)"
description: "The chart-releaser version to use (default: v1.0.0)"
charts_dir:
description: The charts directory
default: charts
Expand Down
4 changes: 2 additions & 2 deletions cr.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ set -o errexit
set -o nounset
set -o pipefail

DEFAULT_CHART_RELEASER_VERSION=v1.0.0-beta.1
DEFAULT_CHART_RELEASER_VERSION=v1.0.0

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

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

0 comments on commit 9723794

Please sign in to comment.