Skip to content

Bump the github-actions group with 2 updates #476

Bump the github-actions group with 2 updates

Bump the github-actions group with 2 updates #476

Workflow file for this run

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