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
17 changes: 9 additions & 8 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,20 @@ jobs:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: "3.13"
python-version: "3.14"
- name: Build source package
run: |
pip install -U --pre cython setuptools
pip install -U cython setuptools
python scripts/fetch-vendor.py --config-file scripts/ffmpeg-latest.json /tmp/vendor
PKG_CONFIG_PATH=/tmp/vendor/lib/pkgconfig python setup.py sdist
- name: Upload source package
uses: actions/upload-artifact@v4
- name: Publish to PyPI
if: github.event_name == 'release' && github.event.action == 'published'
uses: pypa/gh-action-pypi-publish@release/v1
with:
name: dist-source
path: dist/
user: __token__
password: ${{ secrets.PYPI_TOKEN }}

package-wheel:
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -76,7 +77,7 @@ jobs:

publish:
runs-on: ubuntu-latest
needs: [package-source, package-wheel]
needs: [package-wheel]
steps:
- uses: actions/checkout@v6
- uses: actions/download-artifact@v4
Expand Down
Loading