Skip to content

buildkit-service: Update chart to version 0.7.0 #61

buildkit-service: Update chart to version 0.7.0

buildkit-service: Update chart to version 0.7.0 #61

Workflow file for this run

name: Release
on:
push:
branches:
- main
paths:
- charts/*/Chart.yaml
env:
CT_TARGET_BRANCH: main
jobs:
lint:
if: contains(github.event.head_commit.message, 'Update chart to version')
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup chart testing
uses: helm/[email protected]
- name: Lint charts
run: ct lint --config .github/config/ct-lint.yaml
- name: Lint docs
run: .github/script/helm-docs.sh
release:
if: contains(github.event.head_commit.message, 'Update chart to version')
runs-on: ubuntu-latest
needs:
- lint
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@v4
- name: Run chart-releaser
uses: helm/[email protected]
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
CR_SKIP_EXISTING: "true"