First Test of TravisCI doing all generation of the bad blocker files using pull requests on _generator_lists

This commit is contained in:
Mitchell Krog 2017-06-25 13:08:18 +02:00
parent e8a04af1ed
commit 1dfc535937
16 changed files with 7265 additions and 21 deletions

View file

@ -0,0 +1,20 @@
#!/bin/bash
YEAR=$(date +"%Y")
MONTH=$(date +"%m")
# Make Sure we are in the Build Directory
cd $TRAVIS_BUILD_DIR
# Create our Version Number
export GIT_TAG=V3.$YEAR.$MONTH.$TRAVIS_BUILD_NUMBER
# Tag our release
git tag $GIT_TAG -a -m "V3.$YEAR.$MONTH.$TRAVIS_BUILD_NUMBER"
# Push our commit and tags back to the repo
sudo git push origin master && git push origin master --tags
# Uncomment to list all git folders and modified files etc
#ls -aR
# Now TravisCI moves into the deploy: section of TravisCI - see .travis.yml