We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 923fea7 commit 871660aCopy full SHA for 871660a
scripts/release.sh
@@ -31,6 +31,12 @@ git checkout lerna.json # lerna prettifies the JSON and isn't useful
31
# Do related releases
32
./scripts/deploy-gh-pages.sh
33
34
+# Update the next tag
35
+NEXT_VERSION=$(yarn info @lhci/cli | grep 'latest:' -A 1 | tail -n 1 | grep -o "'.*'" | sed s/\'//g)
36
+npm dist-tag add "@lhci/utils@$NEXT_VERSION" next
37
+npm dist-tag add "@lhci/server@$NEXT_VERSION" next
38
+npm dist-tag add "@lhci/cli@$NEXT_VERSION" next
39
+
40
cd ./docs/recipes/docker-client
41
./update-dockerhub.sh
42
cd ../../../
0 commit comments