From 120944e66390c2534cc1b3c62d7285ba7ff02594 Mon Sep 17 00:00:00 2001 From: Carlos Tadeu Panato Junior Date: Thu, 18 Feb 2021 10:19:03 +0100 Subject: [PATCH] chart-releaser: update to use release 1.2.0 (#75) Signed-off-by: Carlos Panato --- README.md | 4 ++-- action.yml | 2 +- cr.sh | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 816151d..f100f4f 100644 --- a/README.md +++ b/README.md @@ -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.1.0) +- `version`: The chart-releaser version to use (default: v1.2.0) - `config`: Optional config file for chart-releaser - `charts_dir`: The charts directory - `charts_repo_url`: The GitHub Pages URL to the charts repo (default: `https://.github.io/`) @@ -52,7 +52,7 @@ jobs: version: v3.4.0 - name: Run chart-releaser - uses: helm/chart-releaser-action@v1.1.0 + uses: helm/chart-releaser-action@v1.2.0 env: CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" ``` diff --git a/action.yml b/action.yml index 28064e7..3201c9d 100644 --- a/action.yml +++ b/action.yml @@ -6,7 +6,7 @@ branding: icon: anchor inputs: version: - description: "The chart-releaser version to use (default: v1.1.1)" + description: "The chart-releaser version to use (default: v1.2.0)" config: description: "The relative path to the chart-releaser config file" charts_dir: diff --git a/cr.sh b/cr.sh index 4506624..419cf82 100755 --- a/cr.sh +++ b/cr.sh @@ -18,7 +18,7 @@ set -o errexit set -o nounset set -o pipefail -DEFAULT_CHART_RELEASER_VERSION=v1.1.1 +DEFAULT_CHART_RELEASER_VERSION=v1.2.0 show_help() { cat << EOF