No description
Find a file
Steven Sheehy ade295d5a3 Add target_dir option
Signed-off-by: Steven Sheehy <steven.sheehy@hedera.com>
2020-08-07 15:41:33 -05:00
.github/workflows Add e2e test 2020-05-28 09:31:05 +03:00
src Add target_dir option 2020-08-07 15:41:33 -05:00
testdata Filter non-chart files and directories 2020-08-06 10:48:49 -05:00
.gitignore Initial commit 2020-05-27 20:39:54 +03:00
action.yml Add target_dir option 2020-08-07 15:41:33 -05:00
Dockerfile Init action 2020-05-28 09:24:03 +03:00
LICENSE Initial commit 2020-05-27 20:39:54 +03:00
README.md Add target_dir option 2020-08-07 15:41:33 -05:00

Helm Publisher

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
  • target_dir The target directory to store the charts, defaults to .

Examples

Package and push all charts in ./charts dir to gh-pages branch:

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:

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_GITHUB_TOKEN }}
          charts_dir: chart
          charts_url: https://charts.fluxcd.io
          owner: fluxcd
          repository: charts
          branch: gh-pages
          target_dir: charts