From deeba6ed76212124fad09ba91383389ae6cf2349 Mon Sep 17 00:00:00 2001 From: Wojciech Trocki Date: Tue, 1 Jun 2021 13:23:52 +0100 Subject: [PATCH] fix: add jq to fetch build --- .github/workflows/fetch_api_client.yaml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/fetch_api_client.yaml b/.github/workflows/fetch_api_client.yaml index 0c8eb890..c7441290 100644 --- a/.github/workflows/fetch_api_client.yaml +++ b/.github/workflows/fetch_api_client.yaml @@ -14,8 +14,12 @@ jobs: steps: - uses: actions/setup-node@v2 - uses: actions/checkout@v2 - - run: ./scripts/fetch_api.sh - - run: ./scripts/generate.sh + - name: Install jq + run: sudo apt-get install jq + - name: Fetch OpenAPI doc + run: ./scripts/fetch_api.sh + - name: Generate SDKs + run: ./scripts/generate.sh - uses: peter-evans/create-pull-request@v3 with: title: "Update API client"