try pip3
This commit is contained in:
parent
17776eab2c
commit
9478917652
1 changed files with 4 additions and 2 deletions
6
.github/workflows/release.yaml
vendored
6
.github/workflows/release.yaml
vendored
|
|
@ -104,10 +104,12 @@ jobs:
|
||||||
# Set an output parameter `uname` for use in subsequent steps
|
# Set an output parameter `uname` for use in subsequent steps
|
||||||
run: |
|
run: |
|
||||||
apk add python3 py3-pip
|
apk add python3 py3-pip
|
||||||
python3 -m pip install -e .
|
pip3 install --upgrade pip
|
||||||
|
pip3 install -e .
|
||||||
echo "Done!"
|
echo "Done!"
|
||||||
python3 -m pip install pyinstaller
|
pip3 install pyinstaller
|
||||||
echo "installed"
|
echo "installed"
|
||||||
|
which pyinstaller
|
||||||
pyinstaller --help
|
pyinstaller --help
|
||||||
pyinstaller --debug=all ytdl-sub.spec
|
pyinstaller --debug=all ytdl-sub.spec
|
||||||
mv dist/ytdl-sub /artifacts/ytdl-sub_${{ matrix.arch }}
|
mv dist/ytdl-sub /artifacts/ytdl-sub_${{ matrix.arch }}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue