Skip to content

Commit

Permalink
chore: do not build play flavor for general build
Browse files Browse the repository at this point in the history
  • Loading branch information
qwq233 committed Apr 22, 2023
1 parent 66b0ca3 commit 2c4d558
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
~/.gradle/buildOutputCleanup/cache.properties
key: gradle-builds-${{ github.sha }}
restore-keys: |
gradle-builds
gradle-builds-stable
- name: Set up ccache
uses: hendrikmuhs/ccache-action@v1.2
with:
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
cat > service_account_credentials.json << EOF
${{ secrets.ANDROID_PUBLISHER_CREDENTIALS }}"
EOF
./gradlew TMessagesProj:assembleRelease
./gradlew TMessagesProj:assembleArm64Release TMessagesProj:assembleArm32Release TMessagesProj:assembleX86Release TMessagesProj:assembleX86_64Release
echo "APK_FILE=$(find TMessagesProj/build/outputs/apk -name '*arm64*.apk')" >> $GITHUB_ENV
echo "APK_FILE_ARMV7=$(find TMessagesProj/build/outputs/apk -name '*arm32*.apk')" >> $GITHUB_ENV
echo "APK_FILE_X86=$(find TMessagesProj/build/outputs/apk -name '*x86.apk')" >> $GITHUB_ENV
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Version.kt
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ object Version {
val officialVersionName = "9.6.0"

@JvmStatic
val isStable = true
val isStable = false
}

0 comments on commit 2c4d558

Please sign in to comment.