From a57bbf65f425d6445750594b0f70eca64e0d97ef Mon Sep 17 00:00:00 2001 From: Joel Bradshaw Date: Fri, 28 Jan 2022 12:55:10 -0800 Subject: [PATCH] Remove dry-run flag from npm publish (#2434) This was left in place from the releases switchover, it was intended to be removed before merging but I failed to communicate that adequately, so it slipped in. That commit also removed the post-build script, but that has since been added back in already. --- scripts/postversion.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/postversion.sh b/scripts/postversion.sh index 3e5806627..f5b4c7173 100755 --- a/scripts/postversion.sh +++ b/scripts/postversion.sh @@ -9,7 +9,7 @@ echo 'postversion tasks' # npm publish will generate the pkg/sinon.js that we use below echo 'publish to npm' git push --follow-tags -npm publish --dry-run +npm publish # Now update the releases branch and archive the new release git checkout $ARCHIVE_BRANCH