Merge pull request #35 from pluralsh/release-v0.9.6 #24
This file contains hidden or 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: Publish OS Builder Chart | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- charts/osbuilder/** | |
branches: | |
- master | |
jobs: | |
publish: | |
name: Publish Helm Chart | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Configure Git | |
run: | | |
git config user.name "$GITHUB_ACTOR" | |
git config user.email "[email protected]" | |
- name: Add repos | |
run: | | |
helm repo add cert-manager https://charts.jetstack.io | |
- name: Run chart-releaser | |
id: release | |
uses: helm/[email protected] | |
with: | |
config: "./.github/configs/cr.yaml" | |
env: | |
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" |