From e3ca8a3281f2c42633fbdb8d4cc9d1cbb59ec67a Mon Sep 17 00:00:00 2001 From: Maiko Sinkyaet Tan Date: Fri, 3 Nov 2023 14:59:02 +0800 Subject: [PATCH] chore: add publish registry config to yarnrc --- .github/workflows/prepare.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/prepare.sh b/.github/workflows/prepare.sh index 5e4abd0..f850162 100644 --- a/.github/workflows/prepare.sh +++ b/.github/workflows/prepare.sh @@ -1,6 +1,7 @@ # set up yarn echo 'nodeLinker: node-modules' >> .yarnrc.yml echo 'npmRegistryServer: https://registry.npmmirror.com' >> .yarnrc.yml +echo 'npmPublishRegistry: https://registry.yarnpkg.com' >> .yarnrc.yml # remove ^ from package.json # do not use sed -i, it behaves differently on Linux and MacOS