From 7dcf24ca9fa05de29e0f07edb1f240715c57160b Mon Sep 17 00:00:00 2001 From: Steve Persch Date: Wed, 12 Oct 2016 20:13:46 -0500 Subject: [PATCH] Testing tag autopushing --- circle.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/circle.yml b/circle.yml index bc985745..a4004b67 100644 --- a/circle.yml +++ b/circle.yml @@ -42,9 +42,20 @@ deployment: feature: branch: 8.x-1.x commands: + # Make sure the full history from GitHub is present. If it is not, + # the push to drupal.org will fail. + - git fetch --unshallow - git remote add drupalorg stevector@git.drupal.org:project/search_api_pantheon.git - git fetch drupalorg + - git push drupalorg $CIRCLE_BRANCH +deployment: + release: + tag: /8.x-*/ + owner: pantheon-systems + commands: # Make sure the full history from GitHub is present. If it is not, # the push to drupal.org will fail. - git fetch --unshallow - - git push drupalorg $CIRCLE_BRANCH + - git remote add drupalorg stevector@git.drupal.org:project/search_api_pantheon.git + - git fetch drupalorg + - git push drupalorg --tags