From 0be53486fd2cad1246465f09e2e0fa83931e72ca Mon Sep 17 00:00:00 2001 From: Ingo Fischer Date: Sat, 31 Aug 2024 15:00:35 +0200 Subject: [PATCH] Try removing lerna fallback command --- .github/workflows/official-release.yml | 2 +- .github/workflows/release-npm.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/official-release.yml b/.github/workflows/official-release.yml index 80f6f3700b..fe0deda9f8 100644 --- a/.github/workflows/official-release.yml +++ b/.github/workflows/official-release.yml @@ -126,7 +126,7 @@ jobs: git config --global user.name "Github Action" git add . - git commit -m "v${VERSION}" && npx lerna version ${VERSION} --no-push --exact --ignore-scripts --no-commit-hooks --yes --amend --force-publish || npx lerna version ${VERSION} --exact --no-push --ignore-scripts --no-commit-hooks --yes --force-publish + git commit -m "v${VERSION}" && npx lerna version ${VERSION} --no-push --exact --ignore-scripts --no-commit-hooks --yes --amend --force-publish - name: Create Pull Request id: cpr diff --git a/.github/workflows/release-npm.yml b/.github/workflows/release-npm.yml index e38ce9b2f4..293d390de2 100644 --- a/.github/workflows/release-npm.yml +++ b/.github/workflows/release-npm.yml @@ -87,11 +87,11 @@ jobs: if: steps.automerge.outputs.mergeResult == 'merged' uses: actions/checkout@v4 - - name: Use Node.js 18.x + - name: Use Node.js 20.x if: steps.automerge.outputs.mergeResult == 'merged' uses: actions/setup-node@v4 with: - node-version: 18.x + node-version: 20.x - name: Determine version if: steps.automerge.outputs.mergeResult == 'merged'