Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
simulate the cringe
Browse files Browse the repository at this point in the history
Authored by: bashonly
bashonly committed Mar 1, 2024

Verified

This commit was signed with the committer’s verified signature.
1 parent 3df5db1 commit abd1a76
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -308,7 +308,10 @@ jobs:
python3 devscripts/make_lazy_extractors.py
- name: Build
run: |
python3 -m bundle.pyinstaller
# python3 -m bundle.pyinstaller
cd bundle
./pyinstaller.py
cd ..
mv dist/yt-dlp_macos dist/yt-dlp_macos_legacy
- name: Verify --update-to
@@ -351,9 +354,14 @@ jobs:
python devscripts/make_lazy_extractors.py
- name: Build
run: |
python -m bundle.py2exe
# python -m bundle.py2exe
cd bundle
python py2exe.py
cd ..
Move-Item ./dist/yt-dlp.exe ./dist/yt-dlp_min.exe
python -m bundle.pyinstaller
cd bundle
python pyinstaller.py
cd ..
python -m bundle.pyinstaller --onedir
Compress-Archive -Path ./dist/yt-dlp/* -DestinationPath ./dist/yt-dlp_win.zip

0 comments on commit abd1a76

Please sign in to comment.