forked from cpputest/cpputest
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Attemptng to not cleanup and add the date to the release
- Loading branch information
Showing
1 changed file
with
3 additions
and
2 deletions.
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 |
---|---|---|
|
@@ -131,7 +131,8 @@ jobs: | |
- stage: deploy latest | ||
env: BUILD=autotools_dist | ||
script: | ||
- git tag -f latest-passing-build -a -m "Generated tag from TravisCI for build $TRAVIS_BUILD_NUMBER" | ||
- export DATE=`date` | ||
- git tag -f latest-passing-build -a -m "Generated tag from TravisCI for build $TRAVIS_BUILD_NUMBER at $DATE" | ||
- git push -f https://cpputest-travis:[email protected]/cpputest/cpputest.git --tags | ||
- ../scripts/travis_ci_build.sh | ||
- pwd | ||
|
@@ -143,7 +144,7 @@ jobs: | |
name: Latest passing build | ||
file: cpputest-latest.tar.gz | ||
overwrite: true | ||
cleanup: false | ||
skip_cleanup: true | ||
release_notes: This is the automatic release from Travis CI. Whenever a build passes, it gets released as Latest Passing Build. | ||
on: | ||
tags: false | ||
|