From ec0389eefb490004b0dbc2cec587a8eb3b5d631c Mon Sep 17 00:00:00 2001 From: black-sliver <59490463+black-sliver@users.noreply.github.com> Date: Fri, 28 Oct 2022 19:13:09 +0200 Subject: [PATCH] CI: use build_exe in automated build --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index be053bdc2dfc..60dbd15b9b66 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -30,7 +30,7 @@ jobs: run: | python -m pip install --upgrade pip setuptools pip install -r requirements.txt - python setup.py build --yes + python setup.py build_exe --yes $NAME="$(ls build)".Split('.',2)[1] $ZIP_NAME="Archipelago_$NAME.7z" echo "ZIP_NAME=$ZIP_NAME" >> $Env:GITHUB_ENV @@ -82,7 +82,7 @@ jobs: "${{ env.PYTHON }}" -m venv venv source venv/bin/activate pip install -r requirements.txt - python setup.py build --yes bdist_appimage --yes + python setup.py build_exe --yes bdist_appimage --yes echo -e "setup.py build output:\n `ls build`" echo -e "setup.py dist output:\n `ls dist`" cd dist && export APPIMAGE_NAME="`ls *.AppImage`" && cd ..