Skip to content

Commit

Permalink
Add manual release github action
Browse files Browse the repository at this point in the history
  • Loading branch information
gpontejos committed Feb 4, 2025
1 parent 99ddb26 commit 4f013bc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/helm-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,11 @@ on:
- main
paths:
- 'helm-charts/**'
workflow_dispatch:

jobs:
release:
if: github.event.pull_request.merged == true && contains(github.event.pull_request.labels.*.name, 'release')
if: (github.event.pull_request.merged == true && contains(github.event.pull_request.labels.*.name, 'release')) || github.event_name == 'workflow_dispatch'
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down

0 comments on commit 4f013bc

Please sign in to comment.