bump cr to v1.4.1 (#121)

Signed-off-by: cpanato <ctadeu@gmail.com>

Signed-off-by: cpanato <ctadeu@gmail.com>
This commit is contained in:
Carlos Tadeu Panato Junior
2022-09-28 12:16:49 +02:00
committed by GitHub
parent 6d70e8546c
commit 98bccfd32b
3 changed files with 8 additions and 8 deletions
+5 -5
View File
@@ -15,7 +15,7 @@ maintain your charts in a different directory, you must include a `charts_dir` i
### Inputs ### Inputs
- `version`: The chart-releaser version to use (default: v1.4.0) - `version`: The chart-releaser version to use (default: v1.4.1)
- `config`: Optional config file for chart-releaser. For more information on the config file, see the [documentation](https://github.com/helm/chart-releaser#config-file) - `config`: Optional config file for chart-releaser. For more information on the config file, see the [documentation](https://github.com/helm/chart-releaser#config-file)
- `charts_dir`: The charts directory - `charts_dir`: The charts directory
- `charts_repo_url`: The GitHub Pages URL to the charts repo (default: `https://<owner>.github.io/<project>`) - `charts_repo_url`: The GitHub Pages URL to the charts repo (default: `https://<owner>.github.io/<project>`)
@@ -57,12 +57,12 @@ jobs:
git config user.email "$GITHUB_ACTOR@users.noreply.github.com" git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
- name: Install Helm - name: Install Helm
uses: azure/setup-helm@v1 uses: azure/setup-helm@v3
with: with:
version: v3.8.1 version: v3.10.0
- name: Run chart-releaser - name: Run chart-releaser
uses: helm/chart-releaser-action@v1.4.0 uses: helm/chart-releaser-action@v1.4.1
env: env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
``` ```
@@ -75,7 +75,7 @@ It does this during every push to `main` by checking each chart in your
`workflow.yml`: `workflow.yml`:
```yaml ```yaml
- name: Run chart-releaser - name: Run chart-releaser
uses: helm/chart-releaser-action@v1.4.0 uses: helm/chart-releaser-action@v1.4.1
with: with:
charts_dir: charts charts_dir: charts
config: cr.yaml config: cr.yaml
+2 -2
View File
@@ -6,9 +6,9 @@ branding:
icon: anchor icon: anchor
inputs: inputs:
version: version:
description: "The chart-releaser version to use (default: v1.4.0)" description: "The chart-releaser version to use (default: v1.4.1)"
required: false required: false
default: v1.4.0 default: v1.4.1
config: config:
description: "The relative path to the chart-releaser config file" description: "The relative path to the chart-releaser config file"
required: false required: false
+1 -1
View File
@@ -18,7 +18,7 @@ set -o errexit
set -o nounset set -o nounset
set -o pipefail set -o pipefail
DEFAULT_CHART_RELEASER_VERSION=v1.4.0 DEFAULT_CHART_RELEASER_VERSION=v1.4.1
show_help() { show_help() {
cat << EOF cat << EOF