Compare commits

..

No commits in common. "402753569d4a1a4b88f7787eebf1cb3af7282460" and "ea85f7838af5efb7ef547b57e49d66ab6cc44a98" have entirely different histories.

2 changed files with 3 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -57,6 +57,7 @@ pipeline {
sh './tools/set-package.sh "$APP_PACKAGE_ID"'
sh './tools/set-title.sh "$APP_TITLE"'
sh './tools/jenkins-build-android.sh'
stash(name: 'outputs', includes: 'build/app/outputs/**')
}
}
}
@ -78,6 +79,7 @@ pipeline {
env.GIT_SSH_REMOTE_NAME = params.GIT_SSH_REMOTE_NAME
env.SSH_KNOWN_HOSTS_FILE = params.SSH_KNOWN_HOSTS_FILE
}
unstash(name: 'outputs')
sshagent(["${params.GIT_CREDENTIAL_ID}"]) {
nodejs(nodeJSInstallationName: "${params.NODEJS_INSTALLATION}") {
withCredentials([

View File

@ -15,7 +15,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
# Read more about iOS versioning at
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
version: 1.0.0+66
version: 1.0.0+65
environment:
sdk: ">=2.12.0 <3.0.0"