Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
sokoli1 committed Jan 26, 2024
1 parent d6b58e4 commit b1be495
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/composite/generate-sdk/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ runs:
run: wget ${{ inputs.spec-link }} -O ./${{ inputs.package-name }}/${{ inputs.package-name }}.spec.yaml
- name: Generate API
shell: bash
run: openapi-generator-cli generate -i ${{ inputs.spec-link }} -c openapi-generator-config.yaml -o=${{ inputs.package-name }} --additional-properties packageName=${{ inputs.package-name }}
run: openapi-generator-cli generate -i ${{ inputs.spec-link }} -c openapi-generator-config.yaml -o=${{ inputs.package-name }} --additional-properties packageName=${{ inputs.package-name }} --additional-properties packageVersionTest=1.2.3
- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
Expand Down
3 changes: 1 addition & 2 deletions template/setup.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

{{>partial_header}}

from {{packageName}}.version import VERSION
from setuptools import setup, find_packages # noqa: H301

# To install the library, run the following
Expand All @@ -12,7 +11,7 @@ from setuptools import setup, find_packages # noqa: H301
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
NAME = "{{{projectName}}}"
VERSION = VERSION
VERSION = "{{{packageVersionTest}}}"

PYTHON_REQUIRES = ">=3.7"
{{#apiInfo}}
Expand Down

0 comments on commit b1be495

Please sign in to comment.