feat: add self-signed certificate init container (#141) #78
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 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 }}" | |