Skip to content

ci: update ghcr.io/renovatebot/renovate docker tag to v38.119.0 (#750) #517

ci: update ghcr.io/renovatebot/renovate docker tag to v38.119.0 (#750)

ci: update ghcr.io/renovatebot/renovate docker tag to v38.119.0 (#750) #517

Workflow file for this run

name: Release Charts
on:
push:
branches:
- master
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Import GPG key
uses: crazy-max/[email protected]
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
- name: Export GPG key to legacy format
run: gpg --export-secret-keys > ~/.gnupg/pubring.gpg
- name: Set up Helm
uses: azure/[email protected]
with:
version: v3.12.3 # renovate: helm
- name: Add dependency chart repos
run: |
helm repo add bitnami https://charts.bitnami.com/bitnami/
- name: Run chart-releaser
uses: helm/[email protected]
with:
config: cr.yaml
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"