Skip to content
Draft
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:

- name: Remove waiters
working-directory: ./sdk-repo-updated
run: rm -r services/*/wait
run: find ./services -type d -name "wait" -exec rm -r {} +

- name: Install SDK project tools and dependencies
working-directory: ./sdk-repo-updated
Expand Down
2 changes: 1 addition & 1 deletion scripts/generate-sdk/languages/go.sh
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ generate_go_sdk() {
--git-user-id "${GIT_USER_ID}" \
--git-repo-id "${GIT_REPO_ID}/services/${service}" \
--global-property apis,models,modelTests=true,modelDocs=false,apiDocs=false,supportingFiles,apiTests=false\
--inline-schema-options "SKIP_SCHEMA_REUSE=true" \
--inline-schema-options "SKIP_SCHEMA_REUSE=true,RESOLVE_INLINE_ENUMS=true" \
--http-user-agent "stackit-sdk-go/${service}" \
--reserved-words-mappings type=types \
--config "${ROOT_DIR}/languages/golang/openapi-generator-config.yml"
Expand Down
Loading