Skip to content

Bump helm/chart-testing-action from 2.4.0 to 2.6.0 #334

Bump helm/chart-testing-action from 2.4.0 to 2.6.0

Bump helm/chart-testing-action from 2.4.0 to 2.6.0 #334

Workflow file for this run

---
name: Release Charts
on:
push:
branches:
- devel
permissions:
contents: write
jobs:
release:
name: Release
if: github.repository_owner == 'submariner-io'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
with:
fetch-depth: 0
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Update the charts
run: |
make release
- name: Push the charts
run: |
git add charts/*
git commit -m "Chart update"
git push