-
Notifications
You must be signed in to change notification settings - Fork 179
79 lines (63 loc) · 2.4 KB
/
helm-docs.yaml
File metadata and controls
79 lines (63 loc) · 2.4 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# SPDX-FileCopyrightText: the secureCodeBox authors
#
# SPDX-License-Identifier: Apache-2.0
# The CI runs on ubuntu-24.04; More info about the installed software is found here:
# https://github.com/actions/runner-images/blob/main/images/ubuntu/Ubuntu2204-Readme.md
name: "Update Helm Docs"
on:
push:
branches:
- main
permissions:
contents: write
jobs:
helm-docs:
runs-on: ubuntu-24.04
if: github.repository == 'secureCodeBox/secureCodeBox'
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.SCB_BOT_USER_TOKEN }}
- name: Import GPG key
uses: crazy-max/ghaction-import-gpg@2dc316deee8e90f13e1a351ab510b4d5bc0c82cd # v7.0.0
with:
gpg_private_key: ${{ secrets.GPG_COMMITS_PRIVATE_KEY }}
passphrase: ${{ secrets.GPG_COMMITS_PASSPHRASE }}
git_user_signingkey: true
git_commit_gpgsign: true
git_committer_name: secureCodeBoxBot
git_committer_email: securecodebox@iteratec.com
- 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.6.0/helm-docs_1.6.0_Linux_x86_64.tar.gz
# Checksum must be extracted from the checksum file every time helm-docs gets updated.
echo "286723d931c18581fc324985cb96e9cce639e521fa63b57ac04ebe9d497e60fb helm-docs.tar.gz" | shasum --check
tar -xvf helm-docs.tar.gz
# Verify installation
./helm-docs --version
sudo mv helm-docs /usr/local/bin/helm-docs
- name: Generate README
run: |
make readme
- name: Generate Demo Target Docs
run: make demo-target-docs
- name: Generate Hooks Docs
run: make hook-docs
- name: Generate Scanner Docs
run: make scanner-docs
- name: Generate Operator Docs
run: make operator-docs
- name: Generate AutoDiscovery Docs
run: make auto-discovery-docs
- name: Remove Helm Docs Files
run: |
# Remove helm-docs download to ensure they don't get committed back
rm -rf helm-docs
- name: Update Helm Docs
run: |
git add "**/*.md"
git commit -sS -m "Updating Helm Docs" || true
git push