* 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>
12 lines
No EOL
567 B
Bash
12 lines
No EOL
567 B
Bash
#!/usr/bin/env bash
|
|
|
|
cp -r android/fastlane fdroid/metadata/chat.fluffy.fluffychat
|
|
cd fdroid
|
|
echo $FDROID_KEY | base64 --decode --ignore-garbage > key.jks
|
|
echo $FDROID_NIGHTLY_KEY | base64 --decode --ignore-garbage > key.nightly.jks
|
|
echo "keypass=\"${FDROID_KEY_PASS}\"" >> config.stable.py
|
|
echo "keystorepass=\"${FDROID_KEY_PASS}\"" >> config.stable.py
|
|
echo "keypass=\"${FDROID_NIGHTLY_KEY_PASS}\"" >> config.nightly.py
|
|
echo "keystorepass=\"${FDROID_NIGHTLY_KEY_PASS}\"" >> config.nightly.py
|
|
chmod 600 config.stable.py key.jks config.nightly.py key.nightly.jks
|
|
cd .. |