From 32395b6d29939d75a3a9faaa46699cf7f1ebdfaa Mon Sep 17 00:00:00 2001 From: Zach Leslie Date: Sat, 10 Feb 2018 11:33:03 -0800 Subject: [PATCH] Use module:push instead of publish rake task --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 25ad4ac..d90aea8 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -25,7 +25,7 @@ pipeline { sh '. .env.sh && bundle exec rake clean' sh '. .env.sh && bundle exec rake build' - sh '[ "$(git rev-list -n 1 $(git tag | tail -n 1 ))" == "$(git rev-list -n 1 HEAD)" ] && bundle exec rake publish pkg/*.tar.gz || echo HEAD is not a tag' + sh '[ "$(git rev-list -n 1 $(git tag | tail -n 1 ))" == "$(git rev-list -n 1 HEAD)" ] && bundle exec rake module:push || echo HEAD is not a tag' } } }