We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8970c01 commit 03e8296Copy full SHA for 03e8296
1 file changed
.github/workflows/github_workflows_build-all_3.14.yml
@@ -200,5 +200,7 @@ jobs:
200
shell: pwsh
201
run: |
202
$DESTFILE="./publish_output/hashes.md"
203
- & "$env:build_location\python\python.exe" -c "import sys;from wppm import hash; hash.print_hashes(sys.argv[1:])" .\publish_output\*64.* > $DESTFILE
204
- gc $DESTFILE
+ # Get the list of files matching the pattern and pass them as arguments
+ $filesToHash = Get-ChildItem -Path ".\publish_output\WinPython*64.*"
205
+ & "$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
206
+ gc $DESTFILE
0 commit comments