Skip to content

Commit

Permalink
package
Browse files Browse the repository at this point in the history
  • Loading branch information
qingyun-wu committed Dec 5, 2024
1 parent af7d69e commit 4a5c7c5
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,17 +43,21 @@ jobs:
# - name: Conda list
# shell: pwsh
# run: conda list
- name: Build autogen
- name: Build pyautogen
shell: pwsh
run: |
pip install twine
python setup_autogen.py sdist bdist_wheel
python setup.py sdist bdist_wheel
- name: Publish pyautogen to PyPI
env:
TWINE_USERNAME: ${{ secrets.PYAUTOGEN_PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYAUTOGEN_PYPI_PASSWORD }}
shell: pwsh
run: twine upload dist/*pyautogen*
- name: Build autogen
shell: pwsh
run: |
pip install twine
python setup_autogen.py sdist bdist_wheel
- name: Publish autogen to PyPI
env:
TWINE_USERNAME: ${{ secrets.AUTOGEN_PYPI_USERNAME }}
Expand All @@ -71,7 +75,3 @@ jobs:
TWINE_PASSWORD: ${{ secrets.AUTOGEN_PYPI_PASSWORD }}
shell: pwsh
run: twine upload dist/ag2*
- name: Build pyautogen
shell: pwsh
run: |
python setup.py sdist bdist_wheel

0 comments on commit 4a5c7c5

Please sign in to comment.