mirror of
https://github.com/status-im/status-mobile.git
synced 2025-01-26 16:39:24 +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') {
|
||||
when { expression { params.BUILD_TYPE == 'nightly' } }
|
||||
steps { script {
|
||||
def pkg = "pkg/StatusIm-${GIT_COMMIT.take(6)}"
|
||||
e2eUrl = common.uploadArtifact("${pkg}-e2e.apk")
|
||||
apkUrl = common.uploadArtifact("${pkg}.apk")
|
||||
dmgUrl = common.uploadArtifact("${pkg}.dmg")
|
||||
appUrl = common.uploadArtifact("${pkg}.AppImage")
|
||||
def pkg = "StatusIm-${GIT_COMMIT.take(6)}"
|
||||
e2eUrl = common.uploadArtifact('pkg', "${pkg}-e2e.apk")
|
||||
apkUrl = common.uploadArtifact('pkg', "${pkg}.apk")
|
||||
dmgUrl = common.uploadArtifact('pkg', "${pkg}.dmg")
|
||||
appUrl = common.uploadArtifact('pkg', "${pkg}.AppImage")
|
||||
/* special case for iOS Diawi link */
|
||||
ipaUrl = ios.getEnvironment().DIAWI_URL
|
||||
} }
|
||||
|
Loading…
x
Reference in New Issue
Block a user