Skip to content

Commit

Permalink
[ci skip] skip circleci build when tagged
Browse files Browse the repository at this point in the history
  • Loading branch information
stormcat24 committed Nov 11, 2014
1 parent 8667db8 commit 63404b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fabfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,12 +165,12 @@ def finish_release(release_version, next_version):
# add files
local('git add -A')
# commit release version
local('git commit -m "[Aeromock Release Task] pre tag commit \'%s\'."' % release_version)
local('git commit -m "[Aeromock Release Task][ci skip] pre tag commit \'%s\'."' % release_version)
# create tag
local('git tag v%s' % release_version)

def commit(message):
# add files
local('git add -A')
# commit
local('git commit -m "[Aeromock Release Task] %s"' % message)
local('git commit -m "[Aeromock Release Task][ci skip] %s"' % message)

0 comments on commit 63404b2

Please sign in to comment.