Skip to content

Commit

Permalink
Merge pull request #79 from sailpoint-oss/v2024Release/Python
Browse files Browse the repository at this point in the history
Update python pipeline to include v2024
  • Loading branch information
tyler-mairose-sp authored Aug 6, 2024
2 parents a579c5d + 15965c8 commit 83f9c33
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/build-python-sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,17 @@ jobs:
java -jar openapi-generator-cli.jar generate -i ../idn/sailpoint-api.beta.yaml -g python -o . --global-property skipFormModel=false --config sdk-resources/beta-config.yaml --enable-post-process-file
node sdk-resources/postscript.js ./sailpoint/beta
- name: After SDK Build
- name: Build V2024 SDK
id: buildV2024
if: steps.buildBeta.outcome == 'success'
run: |
cd python-sdk
rm -rf ./sailpoint/v2024
java -jar openapi-generator-cli.jar generate -i ../idn/sailpoint-api.v2024.yaml -g python -o . --global-property skipFormModel=false --config sdk-resources/v2024-config.yaml --enable-post-process-file
node sdk-resources/postscript.js ./sailpoint/v2024
- name: After SDK Build
if: steps.buildV2024.outcome == 'success'
run: |
cd python-sdk/
pip install -r requirements.txt
Expand Down

0 comments on commit 83f9c33

Please sign in to comment.