Skip to content

[velero] feat: Adds --keep-latest-jobs-count for repository maintenan… #161

[velero] feat: Adds --keep-latest-jobs-count for repository maintenan…

[velero] feat: Adds --keep-latest-jobs-count for repository maintenan… #161

Workflow file for this run

name: Release Charts
on:
push:
branches:
- main
- velero-helm-charts-v*
permissions:
contents: write
packages: write ## needed for ghcr access
jobs:
release:
if: github.repository == 'vmware-tanzu/helm-charts'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Helm
uses: azure/setup-helm@v3
with:
version: 3.13.2
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Run chart-releaser
uses: helm/[email protected]
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Push Charts to GHCR
run: |
for pkg in .cr-release-packages/*; do
if [ -z "${pkg:-}" ]; then
break
fi
helm push "${pkg}" oci://ghcr.io/${GITHUB_REPOSITORY_OWNER}/charts
done