From 46743c9bf8a1dd75d231aad44b8204bb6574e284 Mon Sep 17 00:00:00 2001 From: rschamp <rschamp@media.mit.edu> Date: Fri, 20 Sep 2019 12:57:27 -0400 Subject: [PATCH] Make git tagging do the thing --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 36bd198ce..29ebca82f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -101,11 +101,11 @@ jobs: keys: - v1-dist-{{ .Revision }} - run: npm version --no-git-tag-version $RELEASE_VERSION - - run: echo git tag $RELEASE_VERSION - - run: echo git push $CIRCLE_REPOSITORY_URL $RELEASE_VERSION - run: | npm set //registry.npmjs.org/:_authToken=$NPM_TOKEN npm publish --dry-run + - run: git tag $RELEASE_VERSION + - run: git push $CIRCLE_REPOSITORY_URL $RELEASE_VERSION deploy-requirements: &deploy-requirements requires: -- GitLab