fix(strapi): Fix typo in values #72
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: generate helm-docs | |
on: | |
push: | |
branches-ignore: | |
- gh-pages | |
- main | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Configure Git | |
run: | | |
git config user.name "$GITHUB_ACTOR" | |
git config user.email "[email protected]" | |
- name: generate helm-doc | |
run: | | |
sudo curl -L https://github.com/norwoodj/helm-docs/releases/download/v1.11.0/helm-docs_1.11.0_Linux_x86_64.deb -o /helm-doc.deb | |
sudo dpkg -i /helm-doc.deb | |
helm-docs | |
git add **/README.md | |
git diff --staged --quiet || (git commit -am "ci(docu-bot): generate helm docs" && git push) |