From c62f7fa7b2bded7b9edeba6bcf9eac4f13e932c7 Mon Sep 17 00:00:00 2001 From: Andrew Coates <30809111+acoates-ms@users.noreply.github.com> Date: Mon, 6 May 2024 08:49:35 -0700 Subject: [PATCH] fix --- .github/workflows/update-releases.yml | 4 ++-- RELEASES | 2 +- new-release-tools.js | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/update-releases.yml b/.github/workflows/update-releases.yml index 9b254d73cf1..7459e80e069 100644 --- a/.github/workflows/update-releases.yml +++ b/.github/workflows/update-releases.yml @@ -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: @@ -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 diff --git a/RELEASES b/RELEASES index 1b318753cb4..55448f18d43 100644 --- a/RELEASES +++ b/RELEASES @@ -1,4 +1,3 @@ -0.74.1 0.74.0 0.74.0-preview.4 0.74.0-preview.3 @@ -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 diff --git a/new-release-tools.js b/new-release-tools.js index 02910900986..67ae2fb5a87 100644 --- a/new-release-tools.js +++ b/new-release-tools.js @@ -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") {