@@ -156,7 +156,7 @@ jobs:
156156 # Ensure unicode for wppm output
157157 $env:PYTHONIOENCODING="utf-8"
158158
159- $destfile_md = "publish_output\WinPython$env:WINPYFLAVOR-$env:WINPYARCHbit -$env:WINPYVER2.md"
159+ $destfile_md = "publish_output\WinPython$env:WINPYFLAVOR-$($ env:WINPYARCH)bit -$env:WINPYVER2.md"
160160 & "$env:build_location\python\python.exe" -m wppm -md | Out-File -FilePath $destfile_md -Encoding utf8
161161
162162 & "$env:build_location\python\python.exe" -m pip freeze | Out-File -FilePath dotpython\freeze.txt
@@ -189,19 +189,19 @@ jobs:
189189 $sourceDir = "$env:build_location"
190190 7z a -sfx $destfile7z $sourceDir
191191
192- - name : Upload WinPython folder as artifact
193- uses : actions/upload-artifact@v4
194- with :
195- name : ${{ matrix.flavor_config.ARTIFACT_NAME }}
196- path : publish_output
197- retention-days : 66 # keeps artifact for 66 days
198-
199192 - name : generate hashes wppm style
200193 shell : pwsh
201194 run : |
202195 $DESTFILE="./publish_output/hashes.md"
203- Get-ChildItem -Path ".\publish_output\*64* .*"
196+ Get-ChildItem -Path ".\publish_output\*.*"
204197 # Get the list of files matching the pattern and pass them as arguments
205198 $filesToHash = Get-ChildItem -Path ".\publish_output\*64*.*"
206199 & "$env:build_location\python\python.exe" -c "import sys;from wppm import hash; hash.print_hashes(sys.argv[1:])" @($filesToHash.FullName) | Out-File -FilePath $DESTFILE
207- gc $DESTFILE
200+ gc $DESTFILE
201+
202+ - name : Upload WinPython folder as artifact
203+ uses : actions/upload-artifact@v4
204+ with :
205+ name : ${{ matrix.flavor_config.ARTIFACT_NAME }}
206+ path : publish_output
207+ retention-days : 66 # keeps artifact for 66 days
0 commit comments