Skip to content

feat: argo-cd v2.10.16 (#73) #122

feat: argo-cd v2.10.16 (#73)

feat: argo-cd v2.10.16 (#73) #122

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/[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"