-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding autopushing of tags to drupal.org (#44)
- Loading branch information
Showing
1 changed file
with
12 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 |