We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2086855 commit 07d2e13Copy full SHA for 07d2e13
1 file changed
.github/workflows/github_workflows_build-all_3.14.yml
@@ -200,8 +200,8 @@ jobs:
200
shell: pwsh
201
run: |
202
$DESTFILE="./publish_output/hashes.md"
203
- Get-ChildItem -Path ".\publish_output\*64.*"
+ Get-ChildItem -Path ".\publish_output\*64*.*"
204
# Get the list of files matching the pattern and pass them as arguments
205
- $filesToHash = Get-ChildItem -Path ".\publish_output\*64.*"
+ $filesToHash = Get-ChildItem -Path ".\publish_output\*64*.*"
206
& "$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
0 commit comments