Skip to content

ci: bump helm version #2

ci: bump helm version

ci: bump helm version #2

Workflow file for this run

name: Build and Push Docker image to GHCR
on:
push:
branches:
- main
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Set up Helm
uses: azure/setup-helm@v1
with:
version: '3.13.1'
- name: Lint and Package Helm Chart
run: |
helm lint .
helm package . -d ./dist
- name: Publish Helm Chart to GitHub Packages
uses: helm/[email protected]
with:
charts_dir: dist
charts_repo_url: https://${{ secrets.TARGET_ORG }}.github.io/optlive-showcase-app
token: ${{ secrets.GHCR_PAT }}