Skip to content

feat: argo-cd v2.10.13 (#71) #120

feat: argo-cd v2.10.13 (#71)

feat: argo-cd v2.10.13 (#71) #120

Workflow file for this run

---
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/setup-helm@v4.2.0
- 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 "$GITHUB_ACTOR@users.noreply.github.com"
## 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/chart-releaser-action@v1.6.0
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
CR_SKIP_EXISTING: "true"
CR_INDEX_PATH: "./index.yaml"