No description
Find a file
Stefan Prodan c97dd4b612
Merge pull request #3 from stefanprodan/fix-path
Fix lint and package path
2020-07-09 12:30:20 +03:00
.github/workflows Add e2e test 2020-05-28 09:31:05 +03:00
src Fix lint and package path 2020-07-09 12:28:05 +03:00
testdata Fix lint and package path 2020-07-09 12:28:05 +03:00
.gitignore Initial commit 2020-05-27 20:39:54 +03:00
action.yml Add usage docs 2020-05-28 10:08:22 +03: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 Set action name to Helm Publisher 2020-05-29 09:50:25 +03: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

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