Skip to content

Commit decd42c

Browse files
committed
Push commit
1 parent 103499b commit decd42c

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)