Skip to content
This repository has been archived by the owner on Sep 3, 2024. It is now read-only.

ci: trigger build for every push #9

ci: trigger build for every push

ci: trigger build for every push #9

Workflow file for this run

name: Helm Chart
on:
push:
branches:
- main
jobs:
helm:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Run chart-releaser
uses: helm/[email protected]
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"