Skip to content

Commit

Permalink
Adding autopushing of tags to drupal.org (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
stevector authored Oct 13, 2016
1 parent 7418dc3 commit c6ba108
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 [email protected]: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 [email protected]:project/search_api_pantheon.git
- git fetch drupalorg
- git push drupalorg --tags

0 comments on commit c6ba108

Please sign in to comment.