Skip to content

Workflow file for this run

name: Deploy Helm Charts to GitHub Pages
on:
push:
tags:
- "*"
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Helm
uses: azure/setup-helm@v3
with:
version: v3.13.0
- name: Package Helm Chart
run: |
mkdir -p packaged
helm package helm --destination packaged
cd packaged
helm repo index . --url https://escape-technologies.github.io/repeater/
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: packaged
publish_branch: gh-pages