Skip to content

Add support for Gitea (#436) #230

Add support for Gitea (#436)

Add support for Gitea (#436) #230

Workflow file for this run

name: Release Charts
on:
push:
branches:
- main
paths:
- 'charts/atlantis/**'
permissions: read-all
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Install Helm
uses: azure/setup-helm@v4
with:
# renovate: datasource=github-tags depName=helm packageName=helm/helm
version: v3.16.2
- name: Run chart-releaser
uses: helm/[email protected]
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
CR_SKIP_EXISTING: true
CR_GENERATE_RELEASE_NOTES: true