Skip to content

Commit a02ba29

Browse files
use full path in ARTIFACT_PATH
1 parent 758c671 commit a02ba29

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -430,11 +430,11 @@ jobs:
430430
with:
431431
name: ${{ env.JOB_TRANSFER_ARTIFACT }}
432432
path: ${{ env.BUILD_ARTIFACTS_PATH }}
433-
433+
434434
- name: Save artifact path to variable
435435
run: |
436-
# Find the artifact ending with 'Windows_64bit.exe' in the specified download directory
437-
ARTIFACT_PATH=$(find ${{ env.BUILD_ARTIFACTS_PATH }} -name "*Windows_64bit.exe")
436+
# Find the artifact ending with 'Windows_64bit.exe' in the specified download directory and prepend the full path
437+
ARTIFACT_PATH=$(find ${{ env.BUILD_ARTIFACTS_PATH }} -name "*Windows_64bit.exe" -exec realpath {} \;)
438438
echo "ARTIFACT_PATH=${ARTIFACT_PATH}" >> $GITHUB_ENV
439439
440440
- name: Save Win signing certificate to file

0 commit comments

Comments
 (0)