forked from secureCodeBox/secureCodeBox
-
Notifications
You must be signed in to change notification settings - Fork 0
32 lines (26 loc) · 829 Bytes
/
helm-docs.yaml
File metadata and controls
32 lines (26 loc) · 829 Bytes
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
name: "Update Helm Docs"
on:
push:
jobs:
helm-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
- name: Download Helm Docs
run: |
mkdir helm-docs
cd helm-docs
curl --output helm-docs.tar.gz --location https://github.com/norwoodj/helm-docs/releases/download/v1.5.0/helm-docs_1.5.0_Linux_x86_64.tar.gz
tar -xvf helm-docs.tar.gz
# Verify install
./helm-docs --version
- name: Generate Helm Docs
run: |
./helm-docs/helm-docs
# Remove helm-docs download to ensure they dont get commited back
rm -rf helm-docs
- uses: stefanzweifel/git-auto-commit-action@v4.5.1
with:
commit_message: Updating Helm Docs