From cdc2835f4ad0ad995a89c1b04d22716b961f790c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marin=20Petruni=C4=87?= Date: Mon, 5 Jun 2023 12:59:26 +0200 Subject: [PATCH] fix canary auth (#6151) Signed-off-by: Marin Petrunic Co-authored-by: Junaid <86780488+jdevcs@users.noreply.github.com> --- .github/workflows/canary_release.yml | 1 + package.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/canary_release.yml b/.github/workflows/canary_release.yml index 5354dc6be0f..c208c943c1a 100644 --- a/.github/workflows/canary_release.yml +++ b/.github/workflows/canary_release.yml @@ -14,6 +14,7 @@ jobs: with: node-version: 16 cache: yarn + registry-url: 'https://registry.npmjs.org' - run: yarn install --frozen-lockfile - run: yarn build:web - run: yarn publish:canary diff --git a/package.json b/package.json index c603cf6db80..38b9c7c4b29 100644 --- a/package.json +++ b/package.json @@ -92,7 +92,7 @@ "prepare": "husky install", "postinstall": "yarn build", "compile:contracts": "node ./scripts/compile_contracts.js && yarn format && yarn lint:fix", - "publish:canary": "lerna publish --canary --dist-tag dev --graph-type all --force-publish \"*\" --no-verify-access --yes" + "publish:canary": "lerna publish --canary --dist-tag dev --preid dev --graph-type all --force-publish \"*\" --no-verify-access --yes" }, "devDependencies": { "@cypress/webpack-preprocessor": "^5.12.0",