[READ ONLY MIRROR] Open Source TikTok alternative built on AT Protocol github.com/sprksocial/client
flutter atproto video dart
10
fork

Configure Feed

Select the types of activity you want to include in your feed.

use run_number for version code

+2 -4
+2 -4
.github/workflows/android-internal-release.yml
··· 57 57 echo "SHOWCASES_LICENSE_FLUTTER=${{ secrets.SHOWCASES_LICENSE_FLUTTER }}" >> .env 58 58 echo "SIGNUPS_DISABLED=false" >> .env 59 59 60 - # Set versionCode (commit count + run attempt) 61 - COMMIT_COUNT=$(git rev-list --count HEAD) 62 - BUILD_ATTEMPT=${{ github.run_attempt }} 63 - VERSION_CODE=$((COMMIT_COUNT * 10 + BUILD_ATTEMPT)) 60 + # Set versionCode (run number) 61 + VERSION_CODE=$(github.run_number) 64 62 sed -i "s/^\(version:.*\)+[0-9]*\$/\1+${VERSION_CODE}/" pubspec.yaml 65 63 echo "Using versionCode: $VERSION_CODE" 66 64