We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aeaefb1 commit d43c09dCopy full SHA for d43c09d
.github/workflows/deploy.yml
@@ -47,10 +47,16 @@ jobs:
47
- name: Checkout
48
uses: actions/checkout@v4
49
50
+ - name: Set OpenAPI Generator Version
51
+ run: |
52
+ OPENAPI_VERSION=$(jq .[\"generator-cli\"].version openapitools.json)
53
+ echo "OPENAPI_GENERATOR_VERSION=$OPENAPI_VERSION" >> $GITHUB_ENV
54
+ shell: bash
55
+
56
- name: Generate SDK with Updated Version
57
uses: Bandwidth/[email protected]
58
with:
- openapi-generator-version: 7.7.0
59
+ openapi-generator-version: ${{ env.OPENAPI_GENERATOR_VERSION }}
60
language: python
61
additional-properties: --additional-properties=packageVersion=$RELEASE_VERSION
62
0 commit comments