Skip to content

Commit

Permalink
Fix broken paths
Browse files Browse the repository at this point in the history
  • Loading branch information
WyattBlue committed Jul 14, 2022
1 parent b907a01 commit 037d429
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ff-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,20 +22,20 @@ jobs:
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
cd ae-ffmpeg
mv ae_ffmpeg/ffmpeg/Windows ./
mv ae_ffmpeg/Windows ./
python setup.py bdist_wheel --plat-name=macosx_10_9_x86_64
twine upload dist/*
rm -rf dist build
mv Windows ae_ffmpeg/ffmpeg
mv ae_ffmpeg/ffmpeg/Darwin ./
mv Windows ae_ffmpeg
mv ae_ffmpeg/Darwin ./
python setup.py bdist_wheel --plat-name=win_amd64
twine upload dist/*
rm -rf dist build
mv ae_ffmpeg/ffmpeg/Windows ./
mv ae_ffmpeg/Windows ./
python setup.py sdist bdist_wheel
twine upload dist/*

0 comments on commit 037d429

Please sign in to comment.