We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1437455 commit 1abf14bCopy full SHA for 1abf14b
scripts/auto_release/PythonSdkLiveTest.yml
@@ -83,6 +83,7 @@ jobs:
83
export AZURESDK_BOT_TOKEN=$(azuresdk-github-pat)
84
export STORAGE_CONN_STR=$(storage-conn-str)
85
export STORAGE_ENDPOINT=$(storage-endpoint)
86
+ export PYTHON_TAG=$(PYTHON_TAG)
87
88
# run
89
cd azure-sdk-for-python
scripts/auto_release/main.py
@@ -178,6 +178,9 @@ def generate_code(self):
178
'specFolder': self.spec_repo,
179
'relatedReadmeMdFiles': [str(self.readme_local_folder())]
180
}
181
+ # if Python tag exists
182
+ if os.getenv('PYTHON_TAG'):
183
+ input_data['python_tag'] = os.getenv('PYTHON_TAG')
184
185
self.autorest_result = str(Path(os.getenv('TEMP_FOLDER')) / 'temp.json')
186
with open(self.autorest_result, 'w') as file:
0 commit comments