fix(infra-apps): Update Argo CD from 2.7.11 to 2.8.0 (#1086) #885
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: Release Charts | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup environment for release | |
run: hack/ci/github/setup/release.sh | |
- name: Configure Git | |
run: | | |
git config user.name "$GITHUB_ACTOR" | |
git config user.email "[email protected]" | |
- name: Install Helm | |
uses: azure/[email protected] | |
with: | |
version: v3.10.3 | |
- name: Add dependency chart repos | |
run: yq e '."chart-repos"[]' hack/chart-testing/ct.yaml | tr "=" " " | xargs -L1 helm repo add | |
- name: Run chart-releaser | |
uses: helm/[email protected] | |
env: | |
CR_TOKEN: "${{ secrets.CR_TOKEN }}" | |
- name: Run gomplate to update pages index | |
run: hack/ci/github/steps/update-page.sh | |
env: | |
CR_TOKEN: "${{ secrets.CR_TOKEN }}" |