Skip to content

Commit 97e59c2

Browse files
committed
fix rnwinit bool
1 parent 80d9081 commit 97e59c2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
with:
5151
vmImage: windows-2022
5252
rnwVersion: ${{ matrix.rnwVersion }}
53-
useRnwWindowsInit: ${{ matrix.useRnwWindowsInit }}
53+
useRnwWindowsInit: ${{ matrix.useRnwWindowsInit == true }}
5454

5555
call-buildnpmpackage:
5656
name: Build NPM Package

.github/workflows/template-testcli.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
working-directory: ../testrnx
6060

6161
- name: react-native init-windows
62-
if: ${{ ! inputs.useRnwWindowsInit }}
62+
if: ${{ !inputs.useRnwWindowsInit }}
6363
run: |
6464
Write-Host "Using react-native-windows@$Env:RNW_VERSION"
6565
yarn add react-native-windows@$Env:RNW_VERSION

0 commit comments

Comments
 (0)