diff --git a/.github/workflows/deploy_github.yml b/.github/workflows/deploy_github.yml index 31d0643..b625c62 100644 --- a/.github/workflows/deploy_github.yml +++ b/.github/workflows/deploy_github.yml @@ -37,7 +37,10 @@ jobs: working-directory: ./build-recipes run: | pip install -r win_build_requirements.txt - pyinstaller -y --log-level=DEBUG win_ChipStream.spec + pyinstaller -y --log-level=WARN win_ChipStream.spec + dir + dir dist + dir dist\\ChipStream # Run the binary (the most simple test) dist\\ChipStream\\ChipStream.exe --version python win_make_iss.py diff --git a/build-recipes/win_make_iss.py b/build-recipes/win_make_iss.py index 6c78081..56144b0 100644 --- a/build-recipes/win_make_iss.py +++ b/build-recipes/win_make_iss.py @@ -28,5 +28,5 @@ platform.architecture()[0]) # write iss -with io.open(op.join(cdir, "win_mpl-data-cast.iss"), 'w') as issfile: +with io.open(op.join(cdir, "win_chipstream.iss"), 'w') as issfile: issfile.writelines(iss)