Skip to content

Commit 3228490

Browse files
authored
Merge pull request #472 from web-ridge/fix-deploy-example-pipeline
Fix deploy example pipeline
2 parents 2f7d23d + 5fdaf42 commit 3228490

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
8585
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
8686
AWS_REGION: 'eu-central-1'
87-
SOURCE_DIR: 'example/dist' # optional: defaults to entire repository
87+
SOURCE_DIR: 'example/web-build' # optional: defaults to entire repository
8888

8989

9090

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"pods": "cd example && pod-install --quiet",
3333
"bootstrap": "yarn example && yarn && yarn pods",
3434
"prepack": "bob build",
35-
"build-example": "cd example && npx expo export --platform web"
35+
"build-example": "cd example && npx expo export:web"
3636
},
3737
"keywords": [
3838
"react-native",

src/__tests__/Date/__snapshots__/CalendarEdit.test.tsx.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ exports[`renders CalendarEdit 1`] = `
265265
}
266266
testID="text-input-flat"
267267
underlineColorAndroid="transparent"
268-
value="05/08/2025"
268+
value="05/18/2025"
269269
withModal={false}
270270
/>
271271
</View>

src/__tests__/Date/__snapshots__/DatePickerInput.test.tsx.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ exports[`renders DatePickerInput 1`] = `
258258
}
259259
testID="text-input-flat"
260260
underlineColorAndroid="transparent"
261-
value="05/08/2025"
261+
value="05/18/2025"
262262
/>
263263
</View>
264264
<View

src/__tests__/Date/__snapshots__/DatePickerInputWithoutModal.test.tsx.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ exports[`renders DatePickerInputWithoutModal 1`] = `
256256
}
257257
testID="text-input-flat"
258258
underlineColorAndroid="transparent"
259-
value="05/08/2025"
259+
value="05/18/2025"
260260
/>
261261
</View>
262262
</View>

0 commit comments

Comments
 (0)