Skip to content

Commit 8b48be7

Browse files
authored
Merge pull request #4 from cloudbeds/feat/use-new-verison-of-openapi-generator
feat: use a newer version of openapi generator
2 parents 2d26840 + e26fa19 commit 8b48be7

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/publish.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@ jobs:
6666

6767
- name: Install OpenAPI generator
6868
run: |
69-
curl -s https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.9.0/openapi-generator-cli-$(cat .openapi-generator/VERSION).jar -o openapi-generator-cli.jar
69+
OPENAPI_GENERATOR_VERSION=$(cat .openapi-generator/VERSION)
70+
curl -s https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/$OPENAPI_GENERATOR_VERSION/openapi-generator-cli-$OPENAPI_GENERATOR_VERSION.jar -o openapi-generator-cli.jar
7071
7172
- name: Bump version in VERSION and openapitools.json
7273
run: |

.openapi-generator/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.9.0
1+
7.11.0

openapitools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"generator-cli": {
3-
"version": "7.9.0"
3+
"version": "7.11.0"
44
},
55
"generatorName": "python",
66
"inputSpec": "public_accessa/api/v2/docs/cb-v2-openapi-3.0.0.yaml",

0 commit comments

Comments
 (0)