Skip to content

Commit be6a80b

Browse files
Fix test gen windows (#578)
* fix typo windows testVersion * pfx fix * removed test code * empty line * windows dep
1 parent 759cd45 commit be6a80b

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/testVersion.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
npm install @babylonjs/core@${{ github.event.inputs.BJS_Version }}
4141
npm install @babylonjs/loaders@${{ github.event.inputs.BJS_Version }}
4242
npm install @babylonjs/react-native@${{ github.event.inputs.BRN_Version }}
43-
npm install @babylonjs/react-native-iosandroid-${{ github.event.inputs.BRN_Postfix }}@${{ github.event.inputs.BRN_Version }}
43+
npm install @babylonjs/react-native-windows-${{ github.event.inputs.BRN_Postfix }}@${{ github.event.inputs.BRN_Version }}
4444
npm install @react-native-community/slider
4545
# npm install react-native-permissions
4646
npx react-native autolink-windows

Apps/Playground/0.71/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"react": "18.2.0",
2424
"react-native": "0.71.7",
2525
"react-native-permissions": "^3.6.1",
26-
"react-native-windows": "0.71.1"
26+
"react-native-windows": "0.71.7"
2727
},
2828
"devDependencies": {
2929
"@babel/core": "^7.12.9",

Package/gulpfile.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,8 @@ const copyARM64ReleaseUWPFiles = () => {
386386
}
387387

388388
const copyVCXProjUWPFiles = () => {
389-
return gulp.src('../Modules/@babylonjs/react-native-windows/windows/BabylonReactNative/*.*', '!*.pfx')
389+
const uwpFilesDir = '../Modules/@babylonjs/react-native-windows/windows/BabylonReactNative';
390+
return gulp.src([`${uwpFilesDir}/*.*`, `!${uwpFilesDir}/*.pfx`])
390391
.pipe(gulp.dest('Assembled-Windows/windows/BabylonReactNative'));
391392
}
392393

0 commit comments

Comments
 (0)