Skip to content

test: bump the testsuite group with 1 update (#179) #97

test: bump the testsuite group with 1 update (#179)

test: bump the testsuite group with 1 update (#179) #97

Workflow file for this run

name: 'Release Charts'
on:
push:
branches:
- 'main'
jobs:
release:
runs-on: 'ubuntu-20.04'
permissions:
contents: 'write'
id-token: 'write'
steps:
- id: 'checkout'
uses: 'actions/checkout@v3'
with:
fetch-depth: "0"
- id: 'configure-git'
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- id: 'add-cockroachdb-repo'
run: 'helm repo add cockroachdb https://charts.cockroachdb.com/'
- id: 'release'
uses: 'helm/[email protected]'
env:
CR_GENERATE_RELEASE_NOTES: 'true'
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"