Skip to content

feat: Upgrade argo-workflows to v3.5.0-rc1 (#59) #105

feat: Upgrade argo-workflows to v3.5.0-rc1 (#59)

feat: Upgrade argo-workflows to v3.5.0-rc1 (#59) #105

Workflow file for this run

---
name: Chart Publish
on:
push:
branches:
- master
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install Helm
uses: azure/setup-helm@v3
- name: Add dependency chart repos
run: |
helm repo add akuity https://charts.akuity.io
helm repo add minio https://helm.min.io/
helm repo add stable https://charts.helm.sh/stable
helm repo add incubator https://charts.helm.sh/incubator
- 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]
with:
config: "./.github/configs/cr.yaml"
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"