Skip to content

Commit 67b68ee

Browse files
committed
CLOUDP-308303: size of postman file
1 parent 4697d32 commit 67b68ee

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/release-postman.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,7 @@ jobs:
4848
BASE_URL: ${{ inputs.atlas_prod_base_url }}
4949
working-directory: ./tools/postman
5050
run: |
51-
make transform_collection
52-
make transform_collection_test
51+
make transform_collection_js
5352
5453
- name: Upload Collection to Postman
5554
env:

tools/postman/scripts/transform-postman.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ const OPENAPI_FOLDER = process.env.OPENAPI_FOLDER || './openapi';
2424
const TMP_FOLDER = process.env.TMP_FOLDER || './tmp';
2525
const VERSION_FILE_NAME = process.env.VERSION_FILE_NAME || 'version.txt';
2626
const DESCRIPTION_FILE = process.env.DESCRIPTION_FILE || './collection-description.md';
27-
const TOGGLE_INCLUDE_BODY = process.env.TOGGLE_INCLUDE_BODY !== 'false';
28-
const TOGGLE_ADD_DOCS_LINKS = process.env.TOGGLE_ADD_DOCS_LINKS === 'true';
27+
const TOGGLE_INCLUDE_BODY = false;
28+
const TOGGLE_ADD_DOCS_LINKS = false;
2929
const TOKEN_URL_ENV = process.env.TOKEN_URL_ENV || '';
3030
const BASE_URL = process.env.BASE_URL || '';
3131

0 commit comments

Comments
 (0)