Skip to content

Commit

Permalink
ci: adding workflow dispatch to helm-chart workflow (#558)
Browse files Browse the repository at this point in the history
**Reason for Change**:
To be able to run helm chart publish workflows on demand. I noticed the
latest version (0.3.0) of the helm chart is not published to
https://azure.github.io/kaito/charts/kaito and looks like this can be
resolved by simply re-running the publish workflow (without creating a
new release).

Confirmed this works in my fork of the kaito repo. Re-running the
workflow published new chart version 0.3.0 (with app version 0.3.0)

**Requirements**

- [ ] added unit tests and e2e tests (if applicable).

**Issue Fixed**:
<!-- If this PR fixes GitHub issue 4321, add "Fixes #4321" to the next
line. -->

**Notes for Reviewers**:

Verify helm chart and app versions

```
helm repo add kaito https://azure.github.io/kaito/charts/kaito
helm search repo --versions kaito/workspace
helm search repo --versions kaito/gpu-provisioner
```
  • Loading branch information
pauldotyu authored Aug 14, 2024
1 parent 370007f commit eaa1516
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/helm-chart.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: publish_helm_chart
on:
repository_dispatch:
types: [ create-release ]
workflow_dispatch:

permissions:
id-token: write # This is required for requesting the JWT
Expand Down

0 comments on commit eaa1516

Please sign in to comment.