File tree 2 files changed +9
-3
lines changed
2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -7,9 +7,12 @@ release:
7
7
type : Unity::VM
8
8
image : mobile/android-linux-build:latest
9
9
flavor : i1.large
10
+ variables :
11
+ ARTIFACTORY_URL : artifactory.deltadna.net
10
12
commands :
11
- - ./gradlew clean build check uploadArchives
12
- - ./docsAndTags.sh
13
+ - ./gradlew -PSNAPSHOT_REPOSITORY_URL=https://https://artifactory.deltadna.net/artifactory/deltadna-repo -PMAVEN_SNAPSHOT_USERNAME=$MAVEN_SNAPSHOT_USERNAME -PMAVEN_SNAPSHOT_PASSWORD=$MAVEN_SNAPSHOT_PASSWORD -PRELEASE_REPOSITORY_URL="https://api.bintray.com/maven/deltadna/android/deltadna-sdk/;publish=1" -PMAVEN_RELEASE_USERNAME=$MAVEN_RELEASE_USERNAME -PMAVEN_RELEASE_PASSWORD=$MAVEN_RELEASE_PASSWORD clean build check uploadArchives
14
+ - rm -rf .yamato
15
+ - ./docsAndTags.sh
13
16
artifacts :
14
17
packages :
15
18
paths :
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
version=$( sed ' /^\#/d' gradle.properties | grep ' VERSION_NAME' | tail -n 1 | cut -d " =" -f2-)
3
3
4
+ # This user is just a placeholder - no public commit should be attributed to them
5
+ git config user.name " DeltaDNA"
6
+ git config user.email " placeholder@example.com"
7
+
4
8
git tag $version
5
9
6
10
git push origin $version
@@ -14,4 +18,3 @@ git remote add github git@github.com:deltaDNA/android-sdk.git
14
18
git push -f github HEAD
15
19
git push github $version
16
20
17
- ./scripts/publish-javadocs
You can’t perform that action at this time.
0 commit comments