Skip to content

Commit e5eff8c

Browse files
authored
chore: update QA workflow to run CLI documentation generation (#22)
- 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. ## Summary by Sourcery Update QA workflow to sequentially run Helm and CLI documentation generation and adjust auto-commit file patterns CI: - Include CLI documentation generation alongside Helm in the QA workflow - Streamline file_pattern for auto-committed generated assets to remove redundant paths
1 parent 26acc79 commit e5eff8c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/qa.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ jobs:
126126

127127
- name: Run docs
128128
if: github.event_name == 'pull_request' || github.event_name == 'push'
129-
run: bun run docs:helm
129+
run: bun run docs:helm && bun run docs:cli
130130

131131
# Commit generated version metadata and README updates on release tags
132132
- name: Auto-commit release assets
@@ -135,7 +135,7 @@ jobs:
135135
with:
136136
commit_message: "chore(release): sync generated assets [skip ci]"
137137
branch: main
138-
file_pattern: 'package.json **/package.json charts/**/Chart.yaml charts/**/README.md README.md'
138+
file_pattern: 'package.json charts/**/Chart.yaml charts/**/README.md README.md'
139139
commit_user_name: 'SettleMint Release Bot'
140140
commit_user_email: 'support@settlemint.com'
141141
env:

0 commit comments

Comments
 (0)