From 15edc4ad648dd5ea2759be4338d8354928ba7b67 Mon Sep 17 00:00:00 2001 From: "Grot (@grafanabot)" <43478413+grafanabot@users.noreply.github.com> Date: Wed, 5 Jan 2022 11:31:21 +0100 Subject: [PATCH] Add `packages:publishTest` command (#43696) (#43697) (cherry picked from commit 3625c617fad165c3c0e8f3e43a9dc10670cb1a87) Co-authored-by: Dimitris Sotirakis --- package.json | 1 + packages/README.md | 1 + 2 files changed, 2 insertions(+) diff --git a/package.json b/package.json index bf63644043c..f2c528d4dbe 100644 --- a/package.json +++ b/package.json @@ -28,6 +28,7 @@ "packages:publishCanary": "lerna publish from-package --contents dist --dist-tag canary --yes", "packages:publishLatest": "lerna publish from-package --contents dist --yes", "packages:publishNext": "lerna publish from-package --contents dist --dist-tag next --yes", + "packages:publishTest": "lerna publish from-package --contents dist --dist-tag test --yes", "packages:publishDev": "lerna publish from-package --contents dist --dist-tag dev --yes --registry http://grafana-npm.local:4873 --force-publish=*", "packages:typecheck": "lerna run typecheck", "packages:clean": "lerna run clean", diff --git a/packages/README.md b/packages/README.md index 8fe4b89b63e..b7903607d26 100644 --- a/packages/README.md +++ b/packages/README.md @@ -71,6 +71,7 @@ As mentioned above the `canary` releases are published to the Github package reg - When releasing a prerelease run `packages:publishNext` to publish new versions. - When releasing a stable version run `packages:publishLatest` to publish new versions. + - When releasing a test version run `packages:publishTest` to publish test versions. 5. Push version commit to the release branch.