We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e6d9b2 commit 4c503d4Copy full SHA for 4c503d4
1 file changed
.github/workflows/github_workflows_build-all_3.14.yml
@@ -197,8 +197,8 @@ jobs:
197
retention-days: 66 # keeps artifact for 66 days
198
199
- name: generate hashes wppm style
200
- shell: bash
+ shell: pwsh
201
run: |
202
DESTFILE="./publish_output/hashes.md"
203
- python -c "import sys;from wppm import hash; hash.print_hashes(sys.argv[1:])" publish_output/*64.* > $DESTFILE
204
- cat $DESTFILE
+ & "$env:build_location\python\python.exe" -c "import sys;from wppm import hash; hash.print_hashes(sys.argv[1:])" publish_output\*64.* > $DESTFILE
+ gc $DESTFILE
0 commit comments