mirror of
https://github.com/Noooste/garage-ui.git
synced 2026-07-26 07:48:13 +00:00
c45846535c
Signed-off-by: Noste <83548733+Noooste@users.noreply.github.com>
38 lines
766 B
YAML
38 lines
766 B
YAML
name: chart-release
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- 'garage-ui-chart-v*'
|
|
|
|
permissions:
|
|
contents: write
|
|
pages: write
|
|
|
|
jobs:
|
|
release:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Code
|
|
uses: actions/checkout@v6
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Configure Git
|
|
run: |
|
|
git config user.name "$GITHUB_ACTOR"
|
|
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
|
|
|
|
- name: Set up Helm
|
|
uses: azure/setup-helm@v4.3.1
|
|
with:
|
|
version: v3.19.3
|
|
|
|
- name: Run chart-releaser
|
|
uses: helm/chart-releaser-action@v1.7.0
|
|
with:
|
|
charts_dir: helm
|
|
skip_existing: true
|
|
env:
|
|
CR_TOKEN: ${{ secrets.HELM_RELEASE_TOKEN }}
|