API server & Oracle provider v0.47.0 #170
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: | |
- master | |
env: | |
HELM_VERSION: v3.13.1 | |
jobs: | |
release: | |
name: Release charts | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write # to push chart release and create a release (helm/chart-releaser-action) | |
id-token: write # needed for keyless signing | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # to pull repo with all history | |
- name: Configure Git | |
run: | | |
set -ue | |
git config user.name "${GITHUB_ACTOR}" | |
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com" | |
- name: Set up Helm | |
uses: azure/[email protected] | |
with: | |
version: ${{ env.HELM_VERSION }} | |
- name: Run chart-releaser | |
uses: helm/[email protected] | |
env: | |
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
CR_GENERATE_RELEASE_NOTES: true |