Skip to content
This repository was archived by the owner on Dec 3, 2024. It is now read-only.

Commit a85b5a6

Browse files
committed
Fix release workflow
Play is now refusing the upload due to the target SDK that's too low. I still want to get the APK for the github release now, so disable pushing to google play now.
1 parent 085902d commit a85b5a6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/release-app.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,9 @@ jobs:
4545
echo '${{ secrets.SIGNING_KEYSTORE_JKS_BASE64 }}' | base64 -d > "$SYNCTHING_RELEASE_STORE_FILE"
4646
echo '${{ secrets.GOOGLE_PLAY_SECRETS_BASE64 }}' | base64 -d > "$SYNCTHING_RELEASE_PLAY_ACCOUNT_CONFIG_FILE"
4747
java -version
48-
./gradlew --no-daemon buildNative lint assembleRelease bundleRelease publishReleaseBundle
48+
# TODO: Readd publishReleaseBundle if google play works again, or
49+
# remove everything related to publishing to google play.
50+
./gradlew --no-daemon buildNative lint assembleRelease bundleRelease
4951
rm "$SYNCTHING_RELEASE_STORE_FILE" "$SYNCTHING_RELEASE_PLAY_ACCOUNT_CONFIG_FILE"
5052
5153
echo '${{ secrets.GNUPG_SIGNING_KEY_BASE64 }}' | base64 -d | gpg --import

0 commit comments

Comments
 (0)