-
Notifications
You must be signed in to change notification settings - Fork 49
38 lines (33 loc) · 1010 Bytes
/
helm-chart.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: publish_helm_chart
on:
repository_dispatch:
types: [ create-release ]
workflow_dispatch:
permissions:
id-token: write # This is required for requesting the JWT
packages: write
contents: write
actions: read
deployments: read
pull-requests: read
jobs:
publish-helm:
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@5c7944e73c4c2a096b17a9cb74d65b6c2bbafbde # v2.9.1
with:
egress-policy: audit
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
submodules: true
fetch-depth: 0
ref: ${{ github.event.client_payload.tag }}
- name: Publish Workspace Helm chart
uses: stefanprodan/helm-gh-pages@0ad2bb377311d61ac04ad9eb6f252fb68e207260 # v1.7.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
charts_dir: charts/kaito
target_dir: charts/kaito
linting: off