Update Strimzi cluster version #33
Workflow file for this run
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 chart | |
on: | |
pull_request: | |
branches: | |
- master | |
types: | |
- closed | |
paths: | |
- 'charts/**/Chart.yaml' | |
jobs: | |
release: | |
if: github.event.pull_request.merged == true | |
name: publish helm charts | |
runs-on: ubuntu-latest | |
steps: | |
- name: Update package cache | |
run: sudo apt-get update | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Configure git | |
run: | | |
git config user.name "$GITHUB_ACTOR" | |
git config user.email "[email protected]" | |
- name: Release chart | |
uses: helm/[email protected] | |
env: | |
CR_TOKEN: '${{ secrets.GH_TOKEN }}' |