From ee0ca8b5c23b0baa1b4dbaed3e21a1353b338ad7 Mon Sep 17 00:00:00 2001 From: Roderik van der Veer Date: Wed, 17 Sep 2025 20:40:02 +0200 Subject: [PATCH] chore: update QA workflow to run CLI documentation generation - Modified the QA workflow to run both Helm and CLI documentation generation commands sequentially. - Ensured that the commit message format for auto-committing generated assets is consistent with previous configurations. --- .github/workflows/qa.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/qa.yml b/.github/workflows/qa.yml index 676ca73..8fed26f 100644 --- a/.github/workflows/qa.yml +++ b/.github/workflows/qa.yml @@ -126,7 +126,7 @@ jobs: - name: Run docs if: github.event_name == 'pull_request' || github.event_name == 'push' - run: bun run docs:helm + run: bun run docs:helm && bun run docs:cli # Commit generated version metadata and README updates on release tags - name: Auto-commit release assets @@ -135,7 +135,7 @@ jobs: with: commit_message: "chore(release): sync generated assets [skip ci]" branch: main - file_pattern: 'package.json **/package.json charts/**/Chart.yaml charts/**/README.md README.md' + file_pattern: 'package.json charts/**/Chart.yaml charts/**/README.md README.md' commit_user_name: 'SettleMint Release Bot' commit_user_email: 'support@settlemint.com' env: