Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -503,23 +503,23 @@ jobs:

if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')

environment:
name: pypi
url: https://pypi.org/p/pyvirtualcam

permissions:
id-token: write

steps:
- name: Download wheels from artifact storage
uses: actions/download-artifact@v4
with:
pattern: wheel-*
merge-multiple: true
path: dist

- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.13'

- name: Upload wheels to PyPI
run: |
pip install twine
twine upload -u __token__ -p ${{ secrets.PYPI_TOKEN }} --skip-existing dist/*
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1

publish-docs:
runs-on: ubuntu-latest
Expand Down
Loading