From a85b5a6cd3d66e3ed0cece4acfe364648765f955 Mon Sep 17 00:00:00 2001 From: Simon Frei Date: Sun, 29 Sep 2024 17:47:03 +0200 Subject: [PATCH] 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. --- .github/workflows/release-app.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release-app.yaml b/.github/workflows/release-app.yaml index dbd95b19..0c782228 100644 --- a/.github/workflows/release-app.yaml +++ b/.github/workflows/release-app.yaml @@ -45,7 +45,9 @@ jobs: echo '${{ secrets.SIGNING_KEYSTORE_JKS_BASE64 }}' | base64 -d > "$SYNCTHING_RELEASE_STORE_FILE" echo '${{ secrets.GOOGLE_PLAY_SECRETS_BASE64 }}' | base64 -d > "$SYNCTHING_RELEASE_PLAY_ACCOUNT_CONFIG_FILE" java -version - ./gradlew --no-daemon buildNative lint assembleRelease bundleRelease publishReleaseBundle + # TODO: Readd publishReleaseBundle if google play works again, or + # remove everything related to publishing to google play. + ./gradlew --no-daemon buildNative lint assembleRelease bundleRelease rm "$SYNCTHING_RELEASE_STORE_FILE" "$SYNCTHING_RELEASE_PLAY_ACCOUNT_CONFIG_FILE" echo '${{ secrets.GNUPG_SIGNING_KEY_BASE64 }}' | base64 -d | gpg --import