Skip to content
Snippets Groups Projects
Commit 9767e24c authored by Ben Salha Mohamed Amine's avatar Ben Salha Mohamed Amine
Browse files

add helm-docs to workflow

parent 507966df
No related branches found
No related tags found
No related merge requests found
......@@ -43,6 +43,22 @@ jobs:
with:
version: v3.8.1
- name: Install helm-docs
run: |
cd /tmp
wget https://github.com/norwoodj/helm-docs/releases/download/v1.11.0/helm-docs_1.11.0_Linux_x86_64.tar.gz
tar -xvf helm-docs_1.11.0_Linux_x86_64.tar.gz
sudo mv helm-docs /usr/local/sbin
- name: Generate Helm docs
run: |
helm-docs -o README.md
if [[ `git status --porcelain` ]]; then
git add -A
git commit -m "Generate Helm docs"
git push
fi
- name: Run chart-releaser
uses: helm/chart-releaser-action@v1.5.0
env:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment