Skip to content

Commit

Permalink
Merge pull request #81 from sailpoint-oss/v2024Release/typescript
Browse files Browse the repository at this point in the history
Update pipeline to build v2024 typescript sdk module
  • Loading branch information
tyler-mairose-sp authored Aug 6, 2024
2 parents cbf9c42 + 6d26f09 commit 31461b6
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/build-typescript-sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,15 @@ jobs:
rm -rf sdk-output/beta
java -jar openapi-generator-cli.jar generate -i ../idn/sailpoint-api.beta.yaml -g typescript-axios -o sdk-output/beta --global-property skipFormModel=false --config sdk-resources/beta-config.yaml --api-name-suffix BetaApi --model-name-suffix Beta
- name: Build V2024 SDK
id: buildV2024
if: steps.buildBeta.outcome == 'success'
run: |
cd sdk-ts
rm -rf sdk-output/v2024
node sdk-resources/prescript.js ../idn/v2024/paths
java -jar openapi-generator-cli.jar generate -i ../idn/sailpoint-api.v2024.yaml -g typescript-axios -o sdk-output/v2024 --global-property skipFormModel=false --config sdk-resources/v2024-config.yaml --api-name-suffix V2024Api --model-name-suffix V2024
- name: Run npm install and build Typescript SDK
id: buildSDK
if: steps.buildBeta.outcome == 'success'
Expand Down

0 comments on commit 31461b6

Please sign in to comment.