Skip to content

Commit

Permalink
correct slashes
Browse files Browse the repository at this point in the history
  • Loading branch information
davegarthsimpson committed Jun 27, 2024
1 parent b6a5bae commit 43b12be
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,8 @@ jobs:
shell: bash
run: |
ARTIFACT=$(find "${{ env.BUILD_ARTIFACTS_PATH }}" -name "*Windows_64bit.exe" | head -n 1)
FULL_PATH=$(cygpath -w $ARTIFACT)
# Convert to Windows-style path with forward slashes
FULL_PATH=$(cygpath -w $ARTIFACT | sed 's|\\|/|g')
echo "ARTIFACT_PATH=$FULL_PATH" >> $GITHUB_ENV
- name: Save Win signing certificate to file
Expand Down

0 comments on commit 43b12be

Please sign in to comment.