We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6a5bae commit 43b12beCopy full SHA for 43b12be
.github/workflows/build.yml
@@ -435,7 +435,8 @@ jobs:
435
shell: bash
436
run: |
437
ARTIFACT=$(find "${{ env.BUILD_ARTIFACTS_PATH }}" -name "*Windows_64bit.exe" | head -n 1)
438
- FULL_PATH=$(cygpath -w $ARTIFACT)
+ # Convert to Windows-style path with forward slashes
439
+ FULL_PATH=$(cygpath -w $ARTIFACT | sed 's|\\|/|g')
440
echo "ARTIFACT_PATH=$FULL_PATH" >> $GITHUB_ENV
441
442
- name: Save Win signing certificate to file
0 commit comments