feat: option for app-controller Deployment instead of StatefulSet (#77) #126
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: Chart Publish | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install Helm | |
uses: azure/[email protected] | |
- name: Add dependency chart repos | |
run: | | |
helm repo add akuity https://charts.akuity.io | |
- name: Configure Git | |
run: | | |
git config user.name "$GITHUB_ACTOR" | |
git config user.email "[email protected]" | |
## This is required to consider the old Circle-CI Index and to stay compatible with all the old releases. | |
- name: Fetch current Chart Index | |
run: | | |
git checkout origin/gh-pages index.yaml | |
- name: Run chart-releaser | |
uses: helm/[email protected] | |
env: | |
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
CR_SKIP_EXISTING: "true" | |
CR_INDEX_PATH: "./index.yaml" |