chore: update changelog with 1.7.2 release #47
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 Helm Charts | |
on: | |
push: | |
tags: | |
- v* | |
jobs: | |
release: | |
permissions: | |
contents: write | |
runs-on: ubuntu-latest | |
steps: | |
- 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: Install Helm | |
uses: azure/setup-helm@v3 | |
with: | |
version: v3.8.1 | |
- name: Prepare version | |
run: | | |
export TAG=$(echo ${{ github.ref }} | cut -d '/' -f 3 - ) | |
export VERSION=${TAG#v} # tag without leading v | |
echo TAG=${TAG} >> $GITHUB_ENV | |
echo VERSION=${VERSION} >> $GITHUB_ENV | |
echo "TAG: ${TAG}" | |
echo "(unused, but still: ) VERSION: ${VERSION}" | |
- name: Run chart-releaser | |
uses: stefanprodan/[email protected] | |
with: | |
token: "${{ secrets.GITHUB_TOKEN }}" | |
app_version: "${{env.TAG}}" | |
charts_dir: helm |