Skip to content

Commit

Permalink
Allow also workflow dispatch for helm releasing
Browse files Browse the repository at this point in the history
Signed-off-by: Jirka Kremser <jiri.kremser@gmail.com>
  • Loading branch information
jkremser committed Nov 26, 2024
1 parent 320db6a commit 18d6216
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/release-chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Helm Publish

on:
workflow_dispatch:
push:
branches:
- 'main'
Expand Down Expand Up @@ -36,7 +37,7 @@ jobs:
contents: write
packages: write
id-token: write
if: startsWith(github.event.head_commit.message, '[post-release]') || contains(github.event.head_commit.message, 'kedify/chart-yaml-update')
if: startsWith(github.event.head_commit.message, '[post-release]') || contains(github.event.head_commit.message, 'kedify/chart-yaml-update') || startsWith(github.event.head_commit.message, 'Update chart.yaml')
needs: [test]
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 18d6216

Please sign in to comment.