mirror of
https://github.com/status-im/status-mobile.git
synced 2025-02-04 21:05:18 +00:00
fix paths for uploading artifacts
Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
5fb33cc461
commit
a7677b024d
@ -50,11 +50,11 @@ pipeline {
|
|||||||
stage('Upload') {
|
stage('Upload') {
|
||||||
when { expression { params.BUILD_TYPE == 'nightly' } }
|
when { expression { params.BUILD_TYPE == 'nightly' } }
|
||||||
steps { script {
|
steps { script {
|
||||||
def pkg = "pkg/StatusIm-${GIT_COMMIT.take(6)}"
|
def pkg = "StatusIm-${GIT_COMMIT.take(6)}"
|
||||||
e2eUrl = common.uploadArtifact("${pkg}-e2e.apk")
|
e2eUrl = common.uploadArtifact('pkg', "${pkg}-e2e.apk")
|
||||||
apkUrl = common.uploadArtifact("${pkg}.apk")
|
apkUrl = common.uploadArtifact('pkg', "${pkg}.apk")
|
||||||
dmgUrl = common.uploadArtifact("${pkg}.dmg")
|
dmgUrl = common.uploadArtifact('pkg', "${pkg}.dmg")
|
||||||
appUrl = common.uploadArtifact("${pkg}.AppImage")
|
appUrl = common.uploadArtifact('pkg', "${pkg}.AppImage")
|
||||||
/* special case for iOS Diawi link */
|
/* special case for iOS Diawi link */
|
||||||
ipaUrl = ios.getEnvironment().DIAWI_URL
|
ipaUrl = ios.getEnvironment().DIAWI_URL
|
||||||
} }
|
} }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user