We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1eb5724 commit 8519348Copy full SHA for 8519348
.github/workflows/helm-publish.yaml
@@ -6,7 +6,7 @@ on:
6
- master
7
paths:
8
- 'helm/sway-playground/Chart.yaml'
9
-
+ workflow_dispatch:
10
permissions:
11
contents: read
12
@@ -16,7 +16,7 @@ jobs:
16
runs-on: buildjet-4vcpu-ubuntu-2204
17
if: |
18
(github.event_name == 'release' && github.event.action == 'published') ||
19
- github.ref == 'refs/heads/master' || github.event_name == 'pull_request'
+ github.ref == 'refs/heads/master' || github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch'
20
21
22
packages: write
@@ -33,4 +33,4 @@ jobs:
33
username: ${{ github.repository_owner }}
34
access-token: ${{ secrets.GITHUB_TOKEN }}
35
force: true
36
- chart-folder: ./helm/sway-playground
+ chart-folder: ./helm/sway-playground
0 commit comments