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 0774ccc commit 2acfc6cCopy full SHA for 2acfc6c
.github/workflows/ci.yaml
@@ -128,6 +128,11 @@ jobs:
128
uses: azure/setup-helm@v4
129
- name: Create charts directory
130
run: mkdir -p docs/charts
131
+ - name: Download chart from release
132
+ run: |
133
+ gh release download v${TO_VERSION} --pattern "catalogi-*.tgz" --dir docs/charts/
134
+ env:
135
+ GH_TOKEN: ${{ github.token }}
136
- name: Generate Helm repository index
137
run: |
138
helm repo index docs/charts/ --url https://github.com/codegouvfr/catalogi/releases/download/v${TO_VERSION}/
.gitignore
@@ -11,3 +11,4 @@ CLAUDE.md
11
# Helm
12
helm-charts/*/Chart.lock
13
helm-charts/*/charts/
14
+docs/charts/*.tgz
0 commit comments