* initial scripts n actions * custom cshared isolate * kitlin fixes * integrate and token fix * executable and gstreamer * disable check dupes, fix gstreamer * another linux update, removed 2 android builds * new updates * final android attempt * formatting --------- Co-authored-by: ggurdin <ggurdin@gmail.com>
13 lines
546 B
Bash
Executable file
13 lines
546 B
Bash
Executable file
#!/usr/bin/env bash
|
|
cd android
|
|
echo $PLAY_STORE_UPLOAD_KEY | base64 --decode --ignore-garbage > key.jks
|
|
echo "storePassword=${PLAY_STORE_KEYSTORE_STORE_PASSWORD}" >> key.properties
|
|
echo "keyPassword=${PLAY_STORE_KEYSTORE_KEY_PASSWORD}" >> key.properties
|
|
echo "keyAlias=${PLAY_STORE_KEYSTORE_KEY_ALIAS}" >> key.properties
|
|
echo "storeFile=../key.jks" >> key.properties
|
|
echo $PLAY_STORE_CONFIG_JSON | base64 --decode --ignore-garbage > keys.json
|
|
ls | grep key
|
|
bundle install
|
|
bundle update fastlane
|
|
bundle exec fastlane set_build_code_internal
|
|
cd ..
|