forked from readium/readium-lcp-server
-
Notifications
You must be signed in to change notification settings - Fork 1
37 lines (35 loc) · 1.04 KB
/
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
name: publish helm chart
on:
workflow_dispatch:
push:
branches: ["ci"]
paths:
- "ci/helm-chart/Chart.yaml"
jobs:
chart:
runs-on: ubuntu-latest
if: ${{ github.event_name != 'pull_request' }}
permissions:
contents: write
steps:
- uses: actions/checkout@v4
# - name: Update chart
# run: ./ci/update_chart_version.sh
# - name: Commit chart update
# run: |
# git config user.name "nota-ci"
# git config user.email "[email protected]"
# git add ci/helm-chart/Chart.yaml
# git commit -m "chor(ci): update Chart version" || echo "Nothing to commit"
# git push origin ${{ github.ref_name }}
- name: Publish Helm chart
uses: stefanprodan/[email protected]
with:
token: ${{ secrets.GH_HELM_CHARTS_WRITE }}
owner: notalib
charts_dir: ci
repository: helm-charts
target_dir: charts
index_dir: .
commit_username: nota-ci
commit_email: [email protected]