Skip to content

Commit

Permalink
update chart-releaser to v1.3.0 (#98)
Browse files Browse the repository at this point in the history
  • Loading branch information
cpanato authored Feb 2, 2022
1 parent 974a695 commit 6208805
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 6 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/test-action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: test-chart-releaser

on: [pull_request]

jobs:
test_chart_releaser_action:
runs-on: ubuntu-latest
permissions:
actions: none
checks: none
contents: none
deployments: none
issues: none
packages: none
pull-requests: none
repository-projects: none
security-events: none
statuses: none
name: Install chart-releaser and test presence in path
steps:
- uses: actions/checkout@v2
- name: Install chart-releaser
uses: ./
- name: Check install!
run: cr version
- name: Check root directory
run: |
if [[ $(git diff --stat) != '' ]]; then
echo 'should be clean'
exit 1
else
exit 0
fi
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ maintain your charts in a different directory, you must include a `charts_dir` i

### Inputs

- `version`: The chart-releaser version to use (default: v1.2.1)
- `version`: The chart-releaser version to use (default: v1.3.0)
- `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_repo_url`: The GitHub Pages URL to the charts repo (default: `https://<owner>.github.io/<project>`)
Expand Down Expand Up @@ -55,10 +55,10 @@ jobs:
- name: Install Helm
uses: azure/setup-helm@v1
with:
version: v3.4.0
version: v3.7.1

- name: Run chart-releaser
uses: helm/chart-releaser-action@v1.2.1
uses: helm/chart-releaser-action@v1.3.0
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
```
Expand Down Expand Up @@ -86,7 +86,7 @@ owner: myaccount
git-base-url: https://api.github.com/
```

For options see [config-file](https://github.com/helm/chart-releaser#config-file).
For options see [config-file](https://github.com/helm/chart-releaser#config-file).

## Code of conduct

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.2.1)"
description: "The chart-releaser version to use (default: v1.3.0)"
config:
description: "The relative path to the chart-releaser config file"
charts_dir:
Expand Down
2 changes: 1 addition & 1 deletion 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.2.1
DEFAULT_CHART_RELEASER_VERSION=v1.3.0

show_help() {
cat << EOF
Expand Down

0 comments on commit 6208805

Please sign in to comment.