We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91bcf31 commit ee653a9Copy full SHA for ee653a9
.github/workflows/release_build.yml
@@ -30,7 +30,7 @@ jobs:
30
31
- name: Build Executable
32
run: |
33
- pyinstaller --onefile --name dicomtag dicomtag/main.py
+ pyinstaller --onefile --clean --name dicomtag dicomtag/main.py
34
mkdir -p dist/linux
35
mv dist/dicomtag dist/linux/
36
@@ -57,10 +57,11 @@ jobs:
57
58
python -m pip install --upgrade pip
59
pip install pyinstaller
60
+ pip install .
61
62
63
- pyinstaller --onefile --name dicomtag.exe --noconsole dicomtag/main.py
64
+ pyinstaller --onefile --clean --name dicomtag.exe --noconsole dicomtag/main.py
65
mkdir -p dist/windows
66
mv dist/dicomtag.exe dist/windows/
67
0 commit comments