Skip to content

Commit c3b3a19

Browse files
committed
Updated CI scripts #PLAY_BETA
1 parent 0ad0eb4 commit c3b3a19

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.circleci/key.p12.enc

0 Bytes
Binary file not shown.

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@
1010
/captures
1111
TODO
1212
key.p12
13+
/keystore

scripts/upload-apks.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ function upload_to_beta {
2222
function upload_to_google_play {
2323
echo "Uploading $1 to Google Play"
2424

25-
if ./gradlew :$1:publishApkRegularRelease ; then
25+
if ./gradlew :$1:publishApkRelease ; then
2626
webhook $1 "$APP_RELEASE_NAME" "Uploading to Google Play Succeeded"
2727
else
2828
webhook $1 "$APP_RELEASE_NAME" "Uploading to Google Play FAILED :("
@@ -39,7 +39,7 @@ function upload_to_google_play {
3939
# Print the git commit message
4040
echo "Git commit message: ${GIT_COMMIT_DESC}"
4141

42-
if [[ $GIT_COMMIT_DESC == *"#DEPLOY"* ]]; then
42+
if [[ $GIT_COMMIT_DESC == *"#PLAY_BETA"* ]]; then
4343
upload_to_google_play "app"
4444
else
4545
echo "Not publishing to Google Play as deploy not found in commit message"

0 commit comments

Comments
 (0)