Upload ae-ffmpeg Package #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflows will upload a Python Package using Twine when a release is created | |
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries | |
name: Upload ae-ffmpeg Package | |
on: workflow_dispatch | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install setuptools wheel twine | |
- name: Build and publish | |
env: | |
TWINE_USERNAME: __token__ | |
TWINE_PASSWORD: ${{ secrets.AE_FF_TOKEN }} | |
run: | | |
cd ae-ffmpeg | |
mv ae_ffmpeg/Windows ./ | |
mv ae_ffmpeg/Darwin-arm64 ./ | |
python setup.py bdist_wheel --plat-name=macosx_10_9_x86_64 | |
twine upload dist/* | |
rm -rf dist build | |
mv Darwin-arm64 ae_ffmpeg | |
mv ae_ffmpeg/Darwin-x86_64 ./ | |
python setup.py bdist_wheel --plat-name=macosx_11_0_arm64 | |
twine upload dist/* | |
rm -rf dist build | |
mv Windows ae_ffmpeg | |
mv ae_ffmpeg/Darwin-arm64 ./ | |
python setup.py bdist_wheel --plat-name=win_amd64 | |
twine upload dist/* | |
rm -rf dist build | |
mv ae_ffmpeg/Windows ./ | |
python setup.py sdist bdist_wheel | |
twine upload dist/* |