Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
aegir_jenkins_scripts/jenkins-debian-tag
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
20 lines (15 sloc)
534 Bytes
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
| #!/bin/sh -e | |
| # The purpose of this script is to lay down tags in the git repository | |
| # to publish a new release | |
| # | |
| # This is used in the jenkins job named "R debian provision changelog" | |
| # Provision | |
| rm -rf provision | |
| git clone --branch debian darthsteven@git.drupal.org:project/provision.git | |
| cd provision | |
| # Merge in the new version | |
| git merge $NEW_TAG | |
| dch -v $NEW_DEBIAN_VERSION -D testing "new upstream release" | |
| git commit -a -m "Updating Debian changelog for release $NEW_DEBIAN_VERSION" | |
| # Now we'd do a push | |
| git push origin debian |