Skip to content

Commit 03e8296

Browse files
committed
retry
1 parent 8970c01 commit 03e8296

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/github_workflows_build-all_3.14.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,5 +200,7 @@ jobs:
200200
shell: pwsh
201201
run: |
202202
$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
203+
# Get the list of files matching the pattern and pass them as arguments
204+
$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

Comments
 (0)