Various bugfixes #29
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
# yamllint disable rule:line-length | |
--- | |
# This automatic helm chart releaser Github Action that uses Microsofts Azure setup-helm | |
# * https://github.com/Azure/setup-helm | |
# and helm's chart-releaser-action which uses the https://github.com/helm/chart-releaser image | |
# * https://github.com/helm/chart-releaser-action | |
# | |
# It only creates a new package when there is not yet one in the same version | |
# It will not automatically mark the new release as latest | |
# | |
name: Release helm chart | |
# Controls when the workflow will run | |
# yamllint disable-line rule:truthy | |
on: | |
# Triggers the workflow on push or pull request events but only for the "master" branch | |
push: | |
branches: | |
- master | |
- dev | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# This workflow contains a single job called "build" | |
build: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- name: Checkout Git code | |
uses: actions/checkout@v3 | |
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: | |
token: "${{ secrets.GITHUB_TOKEN }}" | |
- name: Add dependent chart repositories | |
run: | | |
helm repo add groundhog2k https://groundhog2k.github.io/helm-charts | |
- name: Run chart-releaser | |
uses: helm/[email protected] | |
with: | |
mark_as_latest: false | |
env: | |
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
CR_SKIP_EXISTING: true |