Skip to content

Commit

Permalink
fix(ci): we will keep workflow_dispatch for the moment
Browse files Browse the repository at this point in the history
  • Loading branch information
electrosenpai committed Sep 24, 2024
1 parent 09993c7 commit cbac4b9
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
name: Release Charts

on:
push:
tags:
- "*.*.*"
workflow_dispatch:
inputs:
tag:
description: 'Tag to release'
required: true
default: '1.0.0'

jobs:
release:
Expand Down Expand Up @@ -37,5 +40,5 @@ jobs:
git checkout gh-pages
helm repo index . --url https://getlago.github.io/lago-helm-charts
git add .
git commit -m "Update Helm repo index"
git commit -m "Update Helm repo index for tag ${{ github.event.inputs.tag }}"
git push origin gh-pages

0 comments on commit cbac4b9

Please sign in to comment.