diff --git a/.github/workflows/sdk-typecheck.yml b/.github/workflows/sdk-typecheck.yml index 97c00a49..5258db4d 100644 --- a/.github/workflows/sdk-typecheck.yml +++ b/.github/workflows/sdk-typecheck.yml @@ -19,15 +19,16 @@ jobs: path: protocol - name: Compile definitions - run: docker run --rm \ - -v $(pwd)/protocol:/local ghcr.io/getstream/openapi-generator:master generate \ - -i /local/openapi/video-openapi-clientside.yaml \ - -g typescript-fetch \ - -o /local/ts-sdk - --additional-properties=supportsES6=true \ - --additional-properties=modelPropertyNaming=original \ - --additional-properties=enumPropertyNaming=UPPERCASE \ - --additional-properties=withoutRuntimeChecks=true + run: | + docker run --rm \ + -v $(pwd)/protocol:/local ghcr.io/getstream/openapi-generator:master generate \ + -i /local/openapi/video-openapi-clientside.yaml \ + -g typescript-fetch \ + -o /local/ts-sdk + --additional-properties=supportsES6=true \ + --additional-properties=modelPropertyNaming=original \ + --additional-properties=enumPropertyNaming=UPPERCASE \ + --additional-properties=withoutRuntimeChecks=true - name: Checkout SDK uses: actions/checkout@v4