Skip to content

Commit

Permalink
update to workflow_dispatch
Browse files Browse the repository at this point in the history
  • Loading branch information
pdabelf5 committed Apr 10, 2024
1 parent cbaae97 commit 2c350d8
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/publish-helm.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
name: Publish Helm Chart

on:
push:
branches:
- republish-helm
workflow_dispatch:
inputs:
branch:
description: "Release Helm chart from branch"
required: true

defaults:
run:
Expand All @@ -27,7 +29,7 @@ jobs:
- name: Checkout Repository
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
with:
ref: refs/heads/release-3.5
ref: refs/heads/${{ inputs.branch }}

- name: Output Variables
id: vars
Expand All @@ -48,7 +50,7 @@ jobs:
- name: Checkout Repository
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
with:
ref: refs/heads/release-3.5
ref: refs/heads/${{ inputs.branch }}
path: kic

- name: Login to GitHub Container Registry
Expand Down

0 comments on commit 2c350d8

Please sign in to comment.