From 0156859acf5a75b9f026a821997edab7a326d681 Mon Sep 17 00:00:00 2001 From: Herb Caudill Date: Sat, 20 Jan 2024 16:31:34 +0100 Subject: [PATCH] revert change to publish action lerna does the work of keeping all the packages' version numbers in sync --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index b2a066ec6..cb42c2aa1 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -98,7 +98,7 @@ jobs: echo "Is pre-release version" EXTRA_ARGS="$EXTRA_ARGS --tag next" fi - pnpm publish -r --no-git-checks $EXTRA_ARGS + npx lerna publish ${VERSION} --yes --force-publish $EXTRA_ARGS env: VERSION: ${{ needs.check_if_version_upgraded.outputs.version }} NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}