File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -144,7 +144,7 @@ jobs:
144144
145145 - name : Run integration tests
146146 # Only run integration tests if secrets are available
147- if : ${{ secrets.AZURE_OPENAI_API_KEY != '' && vars.AZURE_OPENAI_ENDPOINT != '' }}
147+ if : ${{ secrets.AZURE_OPENAI_API_KEY }}
148148 run : |
149149 uv run --frozen pytest -m integration -v --tb=short
150150 env :
@@ -174,7 +174,8 @@ jobs:
174174 # 1. It's a push event (not a PR)
175175 # 2. The branch is a release/* branch
176176 # 3. There are SDK changes
177- if : github.event_name == 'push' && startsWith(github.ref, 'refs/heads/release/') && needs.changed-sdks.outputs.python-sdk == 'true' && secrets.PYPI_TOKEN != ''
177+ # Note: Requires PYPI_TOKEN secret to be configured in repository settings
178+ if : github.event_name == 'push' && startsWith(github.ref, 'refs/heads/release/') && needs.changed-sdks.outputs.python-sdk == 'true'
178179 run : |
179180 uv run twine upload --config-file .pypirc -r Agent365 dist/*
180181 continue-on-error : true
You can’t perform that action at this time.
0 commit comments