31 lines
No EOL
697 B
YAML
31 lines
No EOL
697 B
YAML
name: 🎁 Release Charts
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- "*"
|
|
|
|
concurrency:
|
|
cancel-in-progress: true
|
|
group: ${{ github.workflow }}-${{ github.ref_name }}
|
|
|
|
jobs:
|
|
release:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Configure Git
|
|
run: |
|
|
git config user.name "forgejo-actions"
|
|
git config user.email "bot@devthefuture.org"
|
|
|
|
- name: Publish Helm charts
|
|
uses: https://git.devthefuture.org/devthefuture/helm-gh-pages.git@v1.7.0
|
|
with:
|
|
charts_dir: charts
|
|
linting: off
|
|
token: ${{ secrets.M8A_ORG_BOT_REPO_TOKEN }} |