feat(infra-apps): Update Argo CD from 2.8.0 to 2.8.2 (#1091) #892
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 "$GITHUB_ACTOR@users.noreply.github.com" | |
- name: Install Helm | |
uses: azure/setup-helm@v3.5 | |
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/chart-releaser-action@v1.5.0 | |
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 }}" |