A GitHub action to turn a GitHub project into a self-hosted Helm chart repo, using helm/chart-releaser CLI tool.
This is a fork of helm/chart-releaser-action with next updates:
- Possibility to disable indexation, just create releases.
- Recursive scanning for charts starting from
charts_dir
.
- A GitHub repo containing a directory with your Helm charts (eg:
/charts
) - A GitHub branch called
gh-pages
to store the published charts. Seecharts_repo_url
for alternatives (Optional, seeno_index
) - Create a workflow
.yml
file in your.github/workflows
directory. An example workflow is available below. For more information, reference the GitHub Help Documentation for Creating a workflow file
For more information on inputs, see the API Documentation
version
: The chart-releaser version to use (default: v1.0.0)charts_dir
: The charts directorycharts_repo_url
: The GitHub Pages URL to the charts repo (default:https://<owner>.github.io/<project>
)no_index
: Do not generate and do not upload index file to charts reposcan
: Scan charts directories recursively starts from charts directory
Create a workflow (eg: .github/workflows/release.yml
):
name: Release Charts 2
on:
push:
branches:
- master
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Run chart-releaser
uses: helm/[email protected]
with:
version: 'v1.0.0' #Optional
charts_dir: '/charts' #Optional
charts_repo_url: 'https://<owner>.github.io/<project>' #Optional
no_index: false #Optional
scan: false #Optional
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
This uses @helm/chart-releaser-action to turn your GitHub project into a self-hosted Helm chart repo.
It does this – during every push to master
– by checking each chart in your project, and whenever there's a new chart version, creates a corresponding GitHub release named for the chart version, adds Helm chart artifacts to the release, and creates or updates an index.yaml
file with metadata about those releases, which is then hosted on GitHub Pages
Participation in the Helm community is governed by the Code of Conduct.