Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/actions/build-sdk/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,6 @@ runs:
run: |
wget -q https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.12.0/openapi-generator-cli-7.12.0.jar -O openapi-generator-cli.jar

- name: Build Versioned SDK (per-partition)
shell: bash
run: |
node sdk-resources/build-versioned-sdk.js \
${{ inputs.api-specs-path }}/idn/apis

- name: Build NERM SDK
shell: bash
run: |
Expand All @@ -69,6 +63,12 @@ runs:
--enable-post-process-file
node sdk-resources/postscript.js ./sailpoint/nerm/v2025

- name: Build Versioned SDK (per-partition)
shell: bash
run: |
node sdk-resources/build-versioned-sdk.js \
${{ inputs.api-specs-path }}/idn/apis

- name: Build and Test
shell: bash
run: |
Expand Down
6 changes: 6 additions & 0 deletions .openapi-generator-ignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,9 @@
#docs/*.md
# Then explicitly reverse the ignore rule for a single file:
#!docs/README.md

# The top-level package init is hand-authored by build-versioned-sdk.js
# (generateInitPy). Every `openapi-generator -o .` run for a sailpoint.* package
# would otherwise regenerate this as an empty namespace stub, wiping the
# ApiClient + resource API exports and breaking `from sailpoint import ...`.
sailpoint/__init__.py
Loading
Loading