This is an automated email from the ASF dual-hosted git repository.
pdesai pushed a commit to branch master
in repository
https://gitbox.apache.org/repos/asf/incubator-openwhisk-wskdeploy.git
The following commit(s) were added to refs/heads/master by this push:
new 063263c Keep the date update-to-date when the tag latest is updated
(#814)
063263c is described below
commit 063263c27ea1aef09d8d265f4c88898dddad958c
Author: Vincent <[email protected]>
AuthorDate: Thu Mar 22 17:09:07 2018 -0400
Keep the date update-to-date when the tag latest is updated (#814)
---
.travis.yml | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/.travis.yml b/.travis.yml
index d135c42..69fd3a9 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -48,12 +48,16 @@ after_success:
git config --global user.name "Travis CI";
export GIT_TAG="latest";
git tag -d $GIT_TAG;
- git tag $GIT_TAG -a -m "Generated tag from Travis CI build
$TRAVIS_BUILD_NUMBER";
+ git push -q
https://[email protected]/apache/incubator-openwhisk-wskdeploy
:refs/tags/$GIT_TAG
+ GIT_COMMITTER_DATE="$(git show --format=%aD | head -1)" git tag $GIT_TAG
-a -m "Generated tag from Travis CI build $TRAVIS_BUILD_NUMBER";
git push -f -q
https://[email protected]/apache/incubator-openwhisk-wskdeploy $GIT_TAG;
fi
after_script:
- make clean
before_deploy:
+- export build_file_name=wskdeploy
+- go get github.com/inconshreveable/mousetrap
+- "./tools/travis/build_tag_releases.sh $build_file_name"
- ./gradlew --console=plain releaseBinaries
- export RELEASE_PKG_FILE="$(cd "$TRAVIS_BUILD_DIR/release" && ls
${zip_file_name}-*.tgz ${zip_file_name}-*.zip)"
- echo "Deploying $RELEASE_PKG_FILE to GitHub releases."
--
To stop receiving notification emails like this one, please contact
[email protected].