We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
ARTIFACT_PATH
1 parent 758c671 commit a02ba29Copy full SHA for a02ba29
.github/workflows/build.yml
@@ -430,11 +430,11 @@ jobs:
430
with:
431
name: ${{ env.JOB_TRANSFER_ARTIFACT }}
432
path: ${{ env.BUILD_ARTIFACTS_PATH }}
433
-
+
434
- name: Save artifact path to variable
435
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")
+ # Find the artifact ending with 'Windows_64bit.exe' in the specified download directory and prepend the full path
+ ARTIFACT_PATH=$(find ${{ env.BUILD_ARTIFACTS_PATH }} -name "*Windows_64bit.exe" -exec realpath {} \;)
438
echo "ARTIFACT_PATH=${ARTIFACT_PATH}" >> $GITHUB_ENV
439
440
- name: Save Win signing certificate to file
0 commit comments