fluffychat/scripts/release-playstore.sh

10 lines
213 B
Bash
Raw Normal View History

2020-12-08 15:46:47 +01:00
#!/bin/sh -ve
2021-12-05 13:54:19 +01:00
RELEASE_TYPE=$(echo $CI_COMMIT_TAG | grep -oE "[a-z]+")
2020-11-22 11:04:47 +01:00
cd android
2021-12-05 14:21:47 +01:00
if [ "$RELEASE_TYPE" = "rc" ]; then
2021-12-05 09:13:23 +01:00
bundle exec fastlane deploy_candidate
else
bundle exec fastlane deploy_release
fi
2020-12-08 15:46:47 +01:00
cd ..