Skip to content

Commit 43b12be

Browse files
correct slashes
1 parent b6a5bae commit 43b12be

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: .github/workflows/build.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,8 @@ jobs:
435435
shell: bash
436436
run: |
437437
ARTIFACT=$(find "${{ env.BUILD_ARTIFACTS_PATH }}" -name "*Windows_64bit.exe" | head -n 1)
438-
FULL_PATH=$(cygpath -w $ARTIFACT)
438+
# Convert to Windows-style path with forward slashes
439+
FULL_PATH=$(cygpath -w $ARTIFACT | sed 's|\\|/|g')
439440
echo "ARTIFACT_PATH=$FULL_PATH" >> $GITHUB_ENV
440441
441442
- name: Save Win signing certificate to file

0 commit comments

Comments
 (0)