ci: fix absolute path of APK for e2e PR jobs

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2023-02-07 13:07:23 +01:00
parent 98b219191f
commit 875f9f1acc
No known key found for this signature in database
GPG Key ID: FE65CD384D5BF7B4
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ pipeline {
projectName: "status-mobile/prs/android-e2e/PR-${params.PR_ID}",
selector: lastWithArtifacts(),
)
apk_path = "${env.PWD}/${utils.findFile('result/*.apk')}"
apk_path = "${env.WORKSPACE}/${utils.findFile('result/*.apk')}"
} }
}