From 875f9f1acce636a53ce94f2d829271b43e9a337b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Tue, 7 Feb 2023 13:07:23 +0100 Subject: [PATCH] ci: fix absolute path of APK for e2e PR jobs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakub SokoĊ‚owski --- ci/tests/Jenkinsfile.e2e-prs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/tests/Jenkinsfile.e2e-prs b/ci/tests/Jenkinsfile.e2e-prs index 563d3405c6..258babec5a 100644 --- a/ci/tests/Jenkinsfile.e2e-prs +++ b/ci/tests/Jenkinsfile.e2e-prs @@ -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')}" } } }