aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/android.yml2
-rw-r--r--.github/workflows/ios.yml2
-rw-r--r--apps/mobile/app.json5
-rw-r--r--apps/mobile/app/_layout.tsx7
4 files changed, 6 insertions, 10 deletions
diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml
index 4879e1b9..610556d0 100644
--- a/.github/workflows/android.yml
+++ b/.github/workflows/android.yml
@@ -3,7 +3,7 @@ name: Android App Release Build
on:
push:
tags:
- - 'android/v[0-9]+.[0-9]+.[0-9]+'
+ - 'android/v[0-9]+.[0-9]+.[0-9]+-[0-9]+'
jobs:
build:
diff --git a/.github/workflows/ios.yml b/.github/workflows/ios.yml
index fcb50f20..d98ae20b 100644
--- a/.github/workflows/ios.yml
+++ b/.github/workflows/ios.yml
@@ -3,7 +3,7 @@ name: iOS App Release Build
on:
push:
tags:
- - 'ios/v[0-9]+.[0-9]+.[0-9]+'
+ - 'ios/v[0-9]+.[0-9]+.[0-9]+-[0-9]+'
jobs:
build:
diff --git a/apps/mobile/app.json b/apps/mobile/app.json
index dc76485b..4891707c 100644
--- a/apps/mobile/app.json
+++ b/apps/mobile/app.json
@@ -29,7 +29,8 @@
"NSAllowsArbitraryLoads": true,
"NSAllowsLocalNetworking": true
}
- }
+ },
+ "buildNumber": "6"
},
"android": {
"adaptiveIcon": {
@@ -47,7 +48,7 @@
}
},
"package": "app.hoarder.hoardermobile",
- "versionCode": 5
+ "versionCode": 6
},
"plugins": [
"expo-router",
diff --git a/apps/mobile/app/_layout.tsx b/apps/mobile/app/_layout.tsx
index f56aa810..0f38165b 100644
--- a/apps/mobile/app/_layout.tsx
+++ b/apps/mobile/app/_layout.tsx
@@ -45,12 +45,7 @@ export default function RootLayout() {
}}
>
<Stack.Screen name="index" />
- <Stack.Screen
- name="sharing"
- options={{
- presentation: "modal",
- }}
- />
+ <Stack.Screen name="sharing" />
</StyledStack>
<StatusBar style="auto" />
</View>