Skip to content

Commit 482d0ac

Browse files
committed
wip
1 parent 437dfb8 commit 482d0ac

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,10 @@ jobs:
6868
- name: Install dependencies
6969
run: bun install
7070

71+
- name: Generate schemas
72+
if: ${{ inputs.prerelease == false }}
73+
run: bun run gen:schema
74+
7175
- name: Build binary for ${{ matrix.platform }}
7276
if: matrix.platform != 'alpine'
7377
run: bun run scripts/build-dist-package.ts --platform ${{ matrix.platform }} --version ${{ inputs.version }}

@generated/schemas/config-schema.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

@generated/schemas/validate-config-schema.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scripts/generate-ai-docs.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -569,8 +569,6 @@ This is the official documentation for Stacktape - a deployment platform for AWS
569569
};
570570

571571
export const generateAiDocs = async ({ distFolderPath }: { distFolderPath?: string }) => {
572-
573-
574572
logInfo('Generating AI documentation...');
575573

576574
await ensureDir(distFolderPath);

scripts/publish-ai-docs.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export const publishAiDocs = async () => {
88
logInfo('Publishing AI docs to the AI docs hosting bucket...');
99
await generateAiDocs({ distFolderPath: AI_DOCS_FOLDER_PATH });
1010
await syncBucket({ bucketName: AI_DOCS_BUCKET_NAME, sourcePath: AI_DOCS_FOLDER_PATH });
11-
logSuccess('Schemas successfully published.');
11+
logSuccess('AI docs successfully published.');
1212
};
1313

1414
if (import.meta.main) {

0 commit comments

Comments
 (0)