Align audit sidecar container with values definition, bump api image … #8
Workflow file for this run
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 Governor helm chart | |
on: | |
push: | |
tags: | |
- '*.*.*' | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout tag | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.ref }} | |
- name: Publish Helm Chart | |
uses: stefanprodan/helm-gh-pages@master | |
with: | |
token: ${{ secrets.PUBLIC_REPO_GH_PAT }} | |
charts_dir: charts | |
charts_url: 'https://helm.equinixmetal.com' | |
repository: 'charts' | |
branch: gh-pages | |
app_version: ${{ github.ref_name }} | |
chart_version: ${{ github.ref_name }} | |
gh-release: | |
name: Create GitHub Release | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
generate_release_notes: true |