We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdb892c commit 5219054Copy full SHA for 5219054
1 file changed
.github/actions/publish-winpython/action.yml
@@ -98,7 +98,7 @@ runs:
98
shell: pwsh
99
run: |
100
$pythonExe = Join-Path "${{ inputs.build_location }}" "python\python.exe"
101
- $DESTFILE = "./publish_output/hashes.md"
+ $DESTFILE = Join-Path ".\publish_output" "hashes_${{ inputs.winpy_ver }}.md"
102
$filesToHash = Get-ChildItem -Path ".\publish_output\*64*.*"
103
& $pythonExe -c "import sys;from wppm import hash; hash.print_hashes(sys.argv[1:])" @($filesToHash.FullName) | Out-File -FilePath $DESTFILE
104
gc $DESTFILE
0 commit comments