Add usage docs
This commit is contained in:
parent
40e7938bb7
commit
d258142f57
2 changed files with 62 additions and 5 deletions
59
README.md
59
README.md
|
@ -1,2 +1,59 @@
|
||||||
# helm-gh-pages
|
# helm-gh-pages
|
||||||
A GitHub Action for publish Helm charts to Github Pages
|
|
||||||
|
A GitHub Action for publishing Helm charts with Github Pages.
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
Inputs:
|
||||||
|
* `token` The GitHub token with write access to the target repository
|
||||||
|
* `charts_dir` The charts directory, defaults to `charts`
|
||||||
|
* `charts_url` The GitHub Pages URL, defaults to `https://<OWNER>.github.io/<REPOSITORY>`
|
||||||
|
* `owner` The GitHub user or org that owns this repository, defaults to the owner in `GITHUB_REPOSITORY` env var
|
||||||
|
* `repository` The GitHub repository, defaults to the `GITHUB_REPOSITORY` env var
|
||||||
|
* `branch` The branch to publish charts, defaults to `gh-pages`
|
||||||
|
* `helm_version` The Helm CLI version, defaults to the latest release
|
||||||
|
|
||||||
|
## Examples
|
||||||
|
|
||||||
|
Package and push all charts in `./charts` dir to `gh-pages` branch:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
name: release
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags: '*'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
release:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Publish Helm charts
|
||||||
|
uses: stefanprodan/helm-gh-pages@master
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
```
|
||||||
|
|
||||||
|
Package and push charts in `./chart` dir to `gh-pages` branch in a different repository:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
name: release-chart
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags: 'chart.*'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
release-chart:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Publish Helm chart
|
||||||
|
uses: stefanprodan/helm-gh-pages@master
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.BOT_TOKEN }}
|
||||||
|
charts_dir: chart
|
||||||
|
charts_url: https://charts.fluxcd.io
|
||||||
|
owner: fluxcd
|
||||||
|
repository: charts
|
||||||
|
branch: gh-pages
|
||||||
|
```
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
name: 'helm-gh-pages'
|
name: 'Helm Publisher'
|
||||||
description: 'A GitHub Action for publishing Helm charts with Github Pages'
|
description: 'A GitHub Action for publishing Helm charts with Github Pages'
|
||||||
author: 'Stefan Prodan'
|
author: 'Stefan Prodan'
|
||||||
branding:
|
branding:
|
||||||
|
@ -12,13 +12,13 @@ inputs:
|
||||||
description: "The charts directory, defaults to `charts`"
|
description: "The charts directory, defaults to `charts`"
|
||||||
required: false
|
required: false
|
||||||
charts_url:
|
charts_url:
|
||||||
description: "The GitHub Pages URL, defaults to `https://<USER>.github.io/<REPOSITORY>`"
|
description: "The GitHub Pages URL, defaults to `https://<OWNER>.github.io/<REPOSITORY>`"
|
||||||
required: false
|
required: false
|
||||||
owner:
|
owner:
|
||||||
description: "The GitHub user or org that owns this repository, defaults to GITHUB_REPOSITORY"
|
description: "The GitHub user or org that owns this repository, defaults to `GITHUB_REPOSITORY`"
|
||||||
required: false
|
required: false
|
||||||
repository:
|
repository:
|
||||||
description: "The GitHub repository name, defaults to GITHUB_REPOSITORY"
|
description: "The GitHub repository name, defaults to `GITHUB_REPOSITORY`"
|
||||||
required: false
|
required: false
|
||||||
branch:
|
branch:
|
||||||
description: "The branch to publish charts, defaults to `gh-pages`"
|
description: "The branch to publish charts, defaults to `gh-pages`"
|
||||||
|
|
Loading…
Add table
Reference in a new issue