Skip to content

Commit deeba6e

Browse files
committed
fix: add jq to fetch build
1 parent 603c92c commit deeba6e

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/fetch_api_client.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,12 @@ jobs:
1414
steps:
1515
- uses: actions/setup-node@v2
1616
- uses: actions/checkout@v2
17-
- run: ./scripts/fetch_api.sh
18-
- run: ./scripts/generate.sh
17+
- name: Install jq
18+
run: sudo apt-get install jq
19+
- name: Fetch OpenAPI doc
20+
run: ./scripts/fetch_api.sh
21+
- name: Generate SDKs
22+
run: ./scripts/generate.sh
1923
- uses: peter-evans/create-pull-request@v3
2024
with:
2125
title: "Update API client"

0 commit comments

Comments
 (0)