fix(cf-common): set default replicas if keda disabled (#83) #82
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
## Reference: https://github.com/helm/chart-releaser-action | |
name: Publish Charts | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- "charts/**" | |
concurrency: | |
group: helm-release | |
env: | |
HELM_VERSION: 3.9.2 # Also update in lint-test.yaml | |
jobs: | |
publish: | |
permissions: | |
contents: write | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Helm | |
uses: azure/setup-helm@v3 | |
with: | |
version: ${{ env.HELM_VERSION }} | |
- name: Configure Git | |
run: | | |
git config user.name "$GITHUB_ACTOR" | |
git config user.email "[email protected]" | |
- name: Run chart-releaser | |
uses: helm/[email protected] | |
with: | |
charts_dir: charts | |
config: cr.yaml | |
env: | |
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
- name: Upload charts to quay.io | |
run: | | |
set -o xtrace | |
helm registry login quay.io -u ${{ secrets.QUAY_USERNAME }} -p ${{ secrets.QUAY_PASSWORD }} | |
if [ -d .cr-release-packages ]; then | |
for CHART in $(find .cr-release-packages -type f -printf '%f\n'); do | |
CHART_NAME=$(echo $CHART | rev | cut -d '-' -f2- | rev ) | |
helm push .cr-release-packages/$CHART oci://quay.io/codefresh/charts | |
done | |
fi |