Skip to content

Commit 1bdf0fc

Browse files
authored
feat: Convos (#1646)
1 parent 2c59bff commit 1bdf0fc

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+3285
-6370
lines changed

.github/workflows/preview-deployment.yml

+9-59
Original file line numberDiff line numberDiff line change
@@ -69,41 +69,8 @@ jobs:
6969
echo "has_native_changes=false" >> $GITHUB_OUTPUT
7070
fi
7171
72-
bump-version:
73-
needs: [check-changes]
74-
if: needs.check-changes.outputs.has_native_changes == 'true'
75-
runs-on: ubuntu-latest
76-
outputs:
77-
new_version: ${{ steps.get_version.outputs.new_version }}
78-
79-
steps:
80-
- name: Checkout repository
81-
uses: actions/checkout@v4
82-
with:
83-
token: ${{ secrets.PAT_GITHUB }}
84-
85-
- name: Configure Git
86-
run: |
87-
git config --global user.email "github-actions[bot]@users.noreply.github.com"
88-
git config --global user.name "github-actions[bot]"
89-
90-
- name: Increment version
91-
run: |
92-
npm version patch --no-git-tag-version -m "chore: increment patch version [skip ci]"
93-
NEW_VERSION=$(node -p "require('./package.json').version")
94-
git add package.json
95-
git commit -m "chore: bump version to ${NEW_VERSION} [skip ci]"
96-
97-
- name: Get new version
98-
id: get_version
99-
run: echo "new_version=$(node -p "require('./package.json').version")" >> $GITHUB_OUTPUT
100-
101-
- name: Push version bump
102-
run: |
103-
git push https://${{ secrets.PAT_GITHUB }}@github.com/${{ github.repository }}.git HEAD:main
104-
10572
ios-build:
106-
needs: [check-changes, bump-version]
73+
needs: [check-changes]
10774
if: needs.check-changes.outputs.has_native_changes == 'true'
10875
runs-on: ubuntu-latest
10976

@@ -115,10 +82,6 @@ jobs:
11582
ref: main
11683
fetch-depth: 0
11784

118-
# To get the incremented version number
119-
- name: Pull latest changes
120-
run: git pull origin main
121-
12285
- name: Setup node
12386
uses: actions/setup-node@v4
12487
with:
@@ -146,17 +109,14 @@ jobs:
146109

147110
- name: Build and submit to store
148111
run: |
149-
export SENTRY_AUTH_TOKEN=$(eas env:get --variable-name=SENTRY_AUTH_TOKEN --variable-environment=preview | tr -d ' ' | cut -d'=' -f2)
150-
eas build --platform ios --profile preview --non-interactive --auto-submit
112+
eas build --platform ios --profile preview --non-interactive --auto-submit --environment=preview
151113
152114
- name: Resolve Sentry Issues
153-
env:
154-
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_USER_AUTH_TOKEN }} # SENTRY_AUTH_TOKEN from expo can't have permissions to do this issues resolving
155115
run: |
156-
sentry-cli issues resolve --all --project convos-mobile-app --org converse-app
116+
eas env:exec --environment preview 'sentry-cli issues resolve --all --project convos-react-native --org convos'
157117
158118
android-build:
159-
needs: [check-changes, bump-version]
119+
needs: [check-changes]
160120
if: needs.check-changes.outputs.has_native_changes == 'true'
161121
runs-on: ubuntu-latest
162122

@@ -168,10 +128,6 @@ jobs:
168128
ref: main
169129
fetch-depth: 0
170130

171-
# To get the incremented version number
172-
- name: Pull latest changes
173-
run: git pull origin main
174-
175131
- name: Setup node
176132
uses: actions/setup-node@v4
177133
with:
@@ -199,14 +155,11 @@ jobs:
199155

200156
- name: Build and submit to store
201157
run: |
202-
export SENTRY_AUTH_TOKEN=$(eas env:get --variable-name=SENTRY_AUTH_TOKEN --variable-environment=preview | tr -d ' ' | cut -d'=' -f2)
203-
eas build --platform android --profile preview --non-interactive --auto-submit
158+
eas build --platform android --profile preview --non-interactive --auto-submit --environment=preview
204159
205160
- name: Resolve Sentry Issues
206-
env:
207-
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_USER_AUTH_TOKEN }} # SENTRY_AUTH_TOKEN from expo can't have permissions to do this issues resolving
208161
run: |
209-
sentry-cli issues resolve --all --project convos-mobile-app --org converse-app
162+
eas env:exec --environment preview 'sentry-cli issues resolve --all --project convos-react-native --org convos'
210163
211164
ota-update:
212165
needs: [check-changes]
@@ -246,15 +199,12 @@ jobs:
246199

247200
- name: Run EAS Update
248201
run: |
249-
eas update --channel=preview --message "${{ needs.check-changes.outputs.commit_message }}" --non-interactive
202+
eas update --channel=preview --message "${{ needs.check-changes.outputs.commit_message }}" --non-interactive --environment=preview
250203
251204
- name: Upload Sourcemaps to Sentry
252205
run: |
253-
export SENTRY_AUTH_TOKEN=$(eas env:get --variable-name=SENTRY_AUTH_TOKEN --variable-environment=preview | tr -d ' ' | cut -d'=' -f2)
254-
npx sentry-expo-upload-sourcemaps dist
206+
eas env:exec --environment preview 'npx sentry-expo-upload-sourcemaps dist'
255207
256208
- name: Resolve Sentry Issues
257-
env:
258-
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_USER_AUTH_TOKEN }} # SENTRY_AUTH_TOKEN from expo can't have permissions to do this issues resolving
259209
run: |
260-
sentry-cli issues resolve --all --project convos-mobile-app --org converse-app
210+
eas env:exec --environment preview 'sentry-cli issues resolve --all --project convos-react-native --org convos'

.github/workflows/production-deployment.yml

+50-87
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,13 @@ name: Production Deployment
33
on:
44
workflow_dispatch:
55
inputs:
6-
deployment_type:
7-
description: "Deployment type (build/update)"
6+
force_native_build:
7+
description: "Force native build"
8+
type: boolean
9+
default: false
810
required: true
9-
type: choice
10-
options:
11-
- auto
12-
- build
13-
- update
14-
15-
# We need to ensure only one workflow runs at a time and wait for any in-progress workflows to complete.
16-
# This is critical because:
17-
# 1. If we merge multiple PRs to main (preview env), each triggers a preview deployment that may increment versions
18-
# 2. When we then deploy to production, we must wait for all deployments to finish
19-
# 3. Otherwise, we might miss version increments and deploy the wrong build
20-
# Example: PR1 with native changes merged to main -> PR1's preview deploy starts incrementing version ->
21-
# If prod deploy starts before PR1's preview deploy finishes, we'll merge main to production with old version ->
22-
# This causes prod to do EAS update when it should have done EAS build with version increment
11+
12+
# Ensure only one workflow runs at a time
2313
concurrency:
2414
group: "deployment"
2515
cancel-in-progress: false
@@ -29,39 +19,33 @@ permissions:
2919
id-token: write
3020

3121
jobs:
32-
check-deployment-type:
22+
check-changes:
3323
runs-on: ubuntu-latest
3424
outputs:
35-
versions_match: ${{ steps.version-compare.outputs.versions_match }}
36-
deployment_type: ${{ steps.determine-deployment.outputs.type }}
25+
has_native_changes: ${{ steps.check-changes.outputs.has_native_changes }}
3726

3827
steps:
39-
# Verify that the required Expo token is available
40-
- name: Check for EXPO_TOKEN
41-
run: |
42-
if [ -z "${{ secrets.EXPO_TOKEN }}" ]; then
43-
echo "You must provide an EXPO_TOKEN secret"
44-
exit 1
45-
fi
46-
47-
# Get the code from the repository
4828
- name: Checkout repository
4929
uses: actions/checkout@v4
5030
with:
51-
fetch-depth: 0
31+
fetch-depth: 0 # Need full history to compare branches
5232
token: ${{ secrets.PAT_GITHUB }}
5333

54-
# Check if the versions in main and production branches match
55-
- name: Compare versions with main
56-
id: version-compare
34+
- name: Check for native changes
35+
id: check-changes
5736
run: |
58-
git fetch origin main
59-
MAIN_VERSION=$(git show origin/main:package.json | jq -r .version)
60-
PROD_VERSION=$(jq -r .version package.json)
61-
if [ "$MAIN_VERSION" != "$PROD_VERSION" ]; then
62-
echo "versions_match=false" >> $GITHUB_OUTPUT
37+
if [[ "${{ github.event.inputs.force_native_build }}" == "true" ]]; then
38+
echo "has_native_changes=true" >> $GITHUB_OUTPUT
6339
else
64-
echo "versions_match=true" >> $GITHUB_OUTPUT
40+
# Get the merge base between main and production
41+
MERGE_BASE=$(git merge-base origin/main origin/production)
42+
43+
# Check for native changes between merge base and main
44+
if git diff --name-only $MERGE_BASE origin/main | grep -E "package.json|app.config.ts|patches/|google-services/|yarn.lock|eas.json"; then
45+
echo "has_native_changes=true" >> $GITHUB_OUTPUT
46+
else
47+
echo "has_native_changes=false" >> $GITHUB_OUTPUT
48+
fi
6549
fi
6650
6751
- name: Merge main into production
@@ -73,29 +57,17 @@ jobs:
7357
git merge origin/main -m "feat: Merge main into production for deployment"
7458
git push origin production
7559
76-
- name: Determine deployment type
77-
id: determine-deployment
78-
run: |
79-
if [ "${{ inputs.deployment_type }}" = "auto" ]; then
80-
if [ "${{ steps.version-compare.outputs.versions_match }}" = "true" ]; then
81-
echo "type=update" >> $GITHUB_OUTPUT
82-
else
83-
echo "type=build" >> $GITHUB_OUTPUT
84-
fi
85-
else
86-
echo "type=${{ inputs.deployment_type }}" >> $GITHUB_OUTPUT
87-
fi
88-
8960
ios-build:
90-
needs: check-deployment-type
91-
if: needs.check-deployment-type.outputs.deployment_type == 'build'
61+
needs: [check-changes]
62+
if: needs.check-changes.outputs.has_native_changes == 'true'
9263
runs-on: ubuntu-latest
9364

9465
steps:
9566
- name: Checkout repository
9667
uses: actions/checkout@v4
9768
with:
9869
token: ${{ secrets.PAT_GITHUB }}
70+
ref: production
9971

10072
- name: Setup node
10173
uses: actions/setup-node@v4
@@ -117,21 +89,27 @@ jobs:
11789
token: ${{ secrets.EXPO_TOKEN }}
11890
packager: yarn
11991
eas-cache: true
120-
patch-watchers: true # Prevents ENOSPC errors on Ubuntu runners
92+
patch-watchers: true
12193

12294
- name: Build iOS production
123-
run: eas build --platform ios --profile production --non-interactive --auto-submit
95+
run: |
96+
eas build --platform ios --profile production --non-interactive --auto-submit --environment=production
97+
98+
- name: Resolve Sentry Issues
99+
run: |
100+
eas env:exec --environment production 'sentry-cli issues resolve --all --project convos-react-native --org convos'
124101
125102
android-build:
126-
needs: check-deployment-type
127-
if: needs.check-deployment-type.outputs.deployment_type == 'build'
103+
needs: [check-changes]
104+
if: needs.check-changes.outputs.has_native_changes == 'true'
128105
runs-on: ubuntu-latest
129106

130107
steps:
131108
- name: Checkout repository
132109
uses: actions/checkout@v4
133110
with:
134111
token: ${{ secrets.PAT_GITHUB }}
112+
ref: production
135113

136114
- name: Setup node
137115
uses: actions/setup-node@v4
@@ -153,22 +131,27 @@ jobs:
153131
token: ${{ secrets.EXPO_TOKEN }}
154132
packager: yarn
155133
eas-cache: true
156-
patch-watchers: true # Prevents ENOSPC errors on Ubuntu runners
134+
patch-watchers: true
157135

158136
- name: Build Android production
159137
run: |
160-
eas build --platform android --profile production --non-interactive --auto-submit
138+
eas build --platform android --profile production --non-interactive --auto-submit --environment=production
139+
140+
- name: Resolve Sentry Issues
141+
run: |
142+
eas env:exec --environment production 'sentry-cli issues resolve --all --project convos-react-native --org convos'
161143
162144
ota-update:
163-
needs: check-deployment-type
164-
if: needs.check-deployment-type.outputs.deployment_type == 'update'
145+
needs: [check-changes]
146+
if: needs.check-changes.outputs.has_native_changes == 'false'
165147
runs-on: ubuntu-latest
166148

167149
steps:
168150
- name: Checkout repository
169151
uses: actions/checkout@v4
170152
with:
171153
token: ${{ secrets.PAT_GITHUB }}
154+
ref: production
172155

173156
- name: Setup node
174157
uses: actions/setup-node@v4
@@ -190,36 +173,16 @@ jobs:
190173
token: ${{ secrets.EXPO_TOKEN }}
191174
packager: yarn
192175
eas-cache: true
193-
patch-watchers: true # Prevents ENOSPC errors on Ubuntu runners
176+
patch-watchers: true
194177

195178
- name: Run EAS Update
196179
run: |
197-
eas update --channel=production --message "Github action production deployment" --non-interactive
180+
eas update --channel=production --message "Production deployment" --non-interactive --environment=production
198181
199-
- name: Upload source maps
182+
- name: Upload Sourcemaps to Sentry
200183
run: |
201-
export SENTRY_AUTH_TOKEN=$(eas env:get --variable-name=SENTRY_AUTH_TOKEN --variable-environment=production | tr -d ' ' | cut -d'=' -f2)
202-
npx sentry-expo-upload-sourcemaps dist
203-
204-
finalize-deployment:
205-
needs: [check-deployment-type, ios-build, android-build, ota-update]
206-
runs-on: ubuntu-latest
207-
if: always()
184+
eas env:exec --environment production 'npx sentry-expo-upload-sourcemaps dist'
208185
209-
steps:
210-
- name: Checkout repository
211-
uses: actions/checkout@v4
212-
with:
213-
token: ${{ secrets.PAT_GITHUB }}
214-
215-
- name: Configure Git
186+
- name: Resolve Sentry Issues
216187
run: |
217-
git config --global user.email "github-actions[bot]@users.noreply.github.com"
218-
git config --global user.name "github-actions[bot]"
219-
220-
- name: Finalize merge
221-
run: |
222-
echo "Deployment successful, finalizing merge..."
223-
git fetch origin main
224-
git merge origin/main -m "feat: Production deployment"
225-
git push origin production
188+
eas env:exec --environment production 'sentry-cli issues resolve --all --project convos-react-native --org convos'

App.tsx

+6-2
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ import { SafeAreaProvider } from "react-native-safe-area-context"
2121
import { ThirdwebProvider } from "thirdweb/react"
2222
import { base } from "viem/chains"
2323
// import { DevToolsBubble } from "react-native-react-query-devtools"
24+
import { ConditionalWrapper } from "@/components/conditional-wrapper"
2425
import { captureError } from "@/utils/capture-error"
2526
import { setupConvosApi } from "@/utils/convos-api/convos-api-init"
2627
import { ReactQueryPersistProvider } from "@/utils/react-query/react-query-persist-provider"
@@ -81,7 +82,10 @@ export function App() {
8182
<ActionSheetProvider>
8283
<ThemeProvider value={{ themeScheme, setThemeContextOverride }}>
8384
<GestureHandlerRootView style={$globalStyles.flex1}>
84-
<DebugProvider>
85+
<ConditionalWrapper
86+
condition={config.debugMenu}
87+
wrapper={(children) => <DebugProvider>{children}</DebugProvider>}
88+
>
8589
<BottomSheetModalProvider>
8690
{/* <AuthenticateWithPasskeyProvider> */}
8791
<AppNavigator />
@@ -90,7 +94,7 @@ export function App() {
9094
<Snackbars />
9195
<ActionSheet />
9296
</BottomSheetModalProvider>
93-
</DebugProvider>
97+
</ConditionalWrapper>
9498
</GestureHandlerRootView>
9599
</ThemeProvider>
96100
</ActionSheetProvider>

0 commit comments

Comments
 (0)