Update Submariner dependencies to v0.20.0-m3 #486
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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@11bd71901bbe5b1630ceea73d27597364c9af683 | |
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 |