build(skaffold): update kubectl version #3
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: | |
push: | |
tags: ['*'] | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install Helm | |
uses: azure/[email protected] | |
- name: Release chart | |
env: | |
TAG: "${{ github.ref_name}}" | |
run: | | |
git config user.name "$GITHUB_ACTOR" | |
git config user.email "[email protected]" | |
git worktree add chart/repo gh-pages | |
helm package chart --version "${{ github.ref_name}}" -d chart/repo | |
cd chart/repo | |
helm repo index . --url=https://sebastiangaiser.github.io/ca-controller-for-strimzi/ | |
git add . | |
git commit -m "$TAG" | |
git push |