Skip to content

Commit 6b97e00

Browse files
committed
chore: correct goal names to fix build on CI
Correction for b692d7d commit.
1 parent 9ffd4ca commit 6b97e00

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/generate-go-app.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Install project dependencies
2222
run: npm ci --no-audit --no-fund # https://docs.npmjs.com/cli/v8/commands/npm-ci
2323
- name: Generate Golang + Chi application
24-
run: npm run generate-go-example
24+
run: npm run gen-go-example
2525
- name: Check whether all modified files have been committed
2626
run: >-
2727
MODIFIED_FILES="$(git status --short)";

.github/workflows/generate-js-app.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Install project dependencies
2222
run: npm ci --no-audit --no-fund # https://docs.npmjs.com/cli/v8/commands/npm-ci
2323
- name: Generate JavaScript + Express application
24-
run: npm run generate-js-example
24+
run: npm run gen-js-example
2525
- name: Check whether all modified files have been committed
2626
run: >-
2727
MODIFIED_FILES="$(git status --short)";

.github/workflows/generate-python-app.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Install project dependencies
2222
run: npm ci --no-audit --no-fund # https://docs.npmjs.com/cli/v8/commands/npm-ci
2323
- name: Generate Python + FastAPI application
24-
run: npm run generate-py-example
24+
run: npm run gen-py-example
2525
- name: Check whether all modified files have been committed
2626
run: >-
2727
MODIFIED_FILES="$(git status --short)";

0 commit comments

Comments
 (0)