From 4871003ff1955e466e9e5fe23e883948650b577c Mon Sep 17 00:00:00 2001 From: Stefan Prodan Date: Fri, 27 Aug 2021 09:40:30 +0300 Subject: [PATCH] ci: Add on-demand Helm publish workflow Signed-off-by: Stefan Prodan --- .github/workflows/helm.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/helm.yaml diff --git a/.github/workflows/helm.yaml b/.github/workflows/helm.yaml new file mode 100644 index 00000000..b828d241 --- /dev/null +++ b/.github/workflows/helm.yaml @@ -0,0 +1,15 @@ +name: helm + +on: + workflow_dispatch: + +jobs: + build-push: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Publish Helm charts + uses: stefanprodan/helm-gh-pages@v1.3.0 + with: + token: ${{ secrets.GITHUB_TOKEN }} + charts_url: https://flagger.app