Skip to content

Commit

Permalink
update builds
Browse files Browse the repository at this point in the history
  • Loading branch information
davidcralph committed Dec 3, 2023
1 parent 8ddf7bc commit b72c862
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ jobs:

- uses: actions/upload-artifact@v2
with:
name: name-of-artifact
name: ray-configurator-${{ github.sha }}
path: dist
4 changes: 2 additions & 2 deletions build_win.bat
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
rmdir /s /q __pycache__ build dist rayversion.txt
rmdir /s /q __pycache__ build dist
python version.py
pyinstaller --noconfirm --noconsole --onefile --clean --version-file="./rayversion.txt" --name "ray-configurator" "./ray_configurator/gui.py"
pyinstaller "ray-configurator.spec"
4 changes: 2 additions & 2 deletions ray-configurator.spec
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ block_cipher = None

a = Analysis(
['ray_configurator\\gui.py'],
pathex=[],
pathex=['ray_configurator\\mappings', 'ray_configurator\\mappings\\languages', 'ray_configurator\\languages'],
binaries=[],
datas=[],
hiddenimports=[],
Expand All @@ -16,7 +16,7 @@ a = Analysis(
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=block_cipher,
noarchive=False,
noarchive=True,
)
pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher)

Expand Down

0 comments on commit b72c862

Please sign in to comment.