Merge pull request #4992 from RSSNext/mobile-main
chore(sync): merge mobile-main into dev
This commit is contained in:
commit
fb43d709ec
|
|
@ -89,6 +89,7 @@ jobs:
|
|||
working-directory: apps/mobile
|
||||
run: eas build --platform android --profile ${{ github.event.inputs.profile || 'preview' }} --local --output=${{ github.workspace }}/build.${{ github.event.inputs.profile == 'production' && 'aab' || 'apk' }}
|
||||
env:
|
||||
EAS_BUILD_DISABLE_EXPO_DOCTOR_STEP: "1"
|
||||
EAS_NO_FROZEN_LOCKFILE: "1"
|
||||
npm_config_node_linker: isolated
|
||||
npm_config_shamefully_hoist: "false"
|
||||
|
|
|
|||
|
|
@ -58,6 +58,7 @@ jobs:
|
|||
working-directory: apps/mobile
|
||||
run: eas build --platform ios --profile development --non-interactive --local --output=./build.ipa
|
||||
env:
|
||||
EAS_BUILD_DISABLE_EXPO_DOCTOR_STEP: "1"
|
||||
EAS_NO_FROZEN_LOCKFILE: "1"
|
||||
SENTRY_AUTH_TOKEN: ${{ secrets.RN_SENTRY_AUTH_TOKEN }}
|
||||
CI: true
|
||||
|
|
@ -114,6 +115,7 @@ jobs:
|
|||
working-directory: apps/mobile
|
||||
run: eas build --platform ios --profile development --non-interactive --local --output=./build.ipa
|
||||
env:
|
||||
EAS_BUILD_DISABLE_EXPO_DOCTOR_STEP: "1"
|
||||
EAS_NO_FROZEN_LOCKFILE: "1"
|
||||
CI: true
|
||||
SENTRY_AUTH_TOKEN: ${{ secrets.RN_SENTRY_AUTH_TOKEN }}
|
||||
|
|
@ -164,6 +166,7 @@ jobs:
|
|||
working-directory: apps/mobile
|
||||
run: eas build --platform ios --profile ios-simulator --non-interactive --local --output=./build-simulator.ipa
|
||||
env:
|
||||
EAS_BUILD_DISABLE_EXPO_DOCTOR_STEP: "1"
|
||||
EAS_NO_FROZEN_LOCKFILE: "1"
|
||||
CI: true
|
||||
SENTRY_AUTH_TOKEN: ${{ secrets.RN_SENTRY_AUTH_TOKEN }}
|
||||
|
|
|
|||
|
|
@ -66,6 +66,7 @@ jobs:
|
|||
working-directory: apps/mobile
|
||||
run: eas build --platform ios --profile ${{ github.event.inputs.profile || 'preview' }} --non-interactive --local --output=./build.ipa
|
||||
env:
|
||||
EAS_BUILD_DISABLE_EXPO_DOCTOR_STEP: "1"
|
||||
EAS_NO_FROZEN_LOCKFILE: "1"
|
||||
SENTRY_AUTH_TOKEN: ${{ secrets.RN_SENTRY_AUTH_TOKEN }}
|
||||
CI: true
|
||||
|
|
@ -127,6 +128,7 @@ jobs:
|
|||
working-directory: apps/mobile
|
||||
run: eas build --platform ios --profile ${{ github.event.inputs.profile || 'preview' }} --non-interactive --local --output=./build.ipa
|
||||
env:
|
||||
EAS_BUILD_DISABLE_EXPO_DOCTOR_STEP: "1"
|
||||
EAS_NO_FROZEN_LOCKFILE: "1"
|
||||
CI: true
|
||||
SENTRY_AUTH_TOKEN: ${{ secrets.RN_SENTRY_AUTH_TOKEN }}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,10 @@
|
|||
# What's New in v0.5.1
|
||||
|
||||
## Shiny new things
|
||||
|
||||
- Added OTA version details to About
|
||||
|
||||
## No longer broken
|
||||
|
||||
- Fixed session refresh after cookie updates
|
||||
- Extended API request timeouts
|
||||
|
|
@ -33,7 +33,7 @@
|
|||
<key>CFBundlePackageType</key>
|
||||
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>0.5.0</string>
|
||||
<string>0.5.1</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleURLTypes</key>
|
||||
|
|
@ -54,7 +54,7 @@
|
|||
</dict>
|
||||
</array>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>3</string>
|
||||
<string>4</string>
|
||||
<key>ITSAppUsesNonExemptEncryption</key>
|
||||
<false/>
|
||||
<key>LSApplicationCategoryType</key>
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@follow/mobile",
|
||||
"version": "0.5.0",
|
||||
"version": "0.5.1",
|
||||
"private": true,
|
||||
"main": "src/main.tsx",
|
||||
"scripts": {
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"version": "0.5.0",
|
||||
"mode": "store",
|
||||
"runtimeVersion": null,
|
||||
"channel": null
|
||||
"version": "0.5.1",
|
||||
"mode": "ota",
|
||||
"runtimeVersion": "0.5.0",
|
||||
"channel": "production"
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue