Skip to content

Commit ab48c51

Browse files
committed
need to actually run the script
1 parent c22732d commit ab48c51

1 file changed

Lines changed: 13 additions & 1 deletion

File tree

.github/workflows/upload-json-schema.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,21 @@ jobs:
1313
id-token: 'write'
1414

1515
steps:
16-
- id: 'checkout'
16+
- id: checkout
1717
uses: 'actions/checkout@v4'
1818

19+
- name: Use Node.js
20+
uses: actions/setup-node@v4
21+
with:
22+
node-version: '24'
23+
24+
- name: Install dependencies
25+
run: npm ci
26+
27+
- id: create-schema
28+
name: Create JSON Schema
29+
run: npm run create-json-schema
30+
1931
- id: 'auth'
2032
uses: 'google-github-actions/auth@v3'
2133
with:

0 commit comments

Comments
 (0)