Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
acoates-ms committed May 6, 2024
1 parent 261b25a commit c62f7fa
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/update-releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
- run: npm install semver
- run: node generate-all.js onlyOne
- run: git add RELEASES
- run: git commit -m "Update RELEASES" >$null
- run: & {git commit -m "Update RELEASES"}
- run: git push

check-bats-mac:
Expand All @@ -75,5 +75,5 @@ jobs:
- run: npm install semver
- run: node generate-all-mac.js onlyOne
- run: git add RELEASES_MAC
- run: git commit -m "Update RELEASES_MAC" >$null
- run: & {git commit -m "Update RELEASES_MAC" >$null}
- run: git push
2 changes: 1 addition & 1 deletion RELEASES
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
0.74.1
0.74.0
0.74.0-preview.4
0.74.0-preview.3
Expand Down Expand Up @@ -66,6 +65,7 @@
0.72.0-preview.3
0.72.0-preview.2
0.72.0-preview.1
0.71.45
0.71.44
0.71.43
0.71.42
Expand Down
2 changes: 1 addition & 1 deletion new-release-tools.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ function createNewRelease(newRelease, rnVersion, apptype) {
runCmd(`git checkout -b "${branchName}"`, wtAppPath);

runCmd(
`npx --yes react-native init "${appName}" --template react-native@${rnVersion}`,
`npx --yes react-native init "${appName}" --template react-native@${rnVersion} --skip-install --skip-git-init`,
wtAppPath
);
if (apptype === "mac") {
Expand Down

0 comments on commit c62f7fa

Please sign in to comment.