Skip to content

pipeline: automatically bump chart version #37

pipeline: automatically bump chart version

pipeline: automatically bump chart version #37

Workflow file for this run

name: Release Charts
on:
push:
branches:
- main
jobs:
semrel:
name: Chart Versioning
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- name: Checkout
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Generate the next version
uses: cycjimmy/semantic-release-action@v4
id: release
with:
dry_run: true
extra_plugins: |
@semantic-release/git
semantic-release-helm
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
release:
name: Release
runs-on: ubuntu-latest
needs: semrel
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Install Helm
uses: azure/[email protected]
- name: Run chart-releaser
uses: helm/[email protected]
env:
CR_TOKEN: ${{ secrets.GITHUB_TOKEN }}