diff --git a/.travis.yml b/.travis.yml index e25c06f..7fd3b94 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,7 +15,7 @@ script: before_deploy: # Add tag if missing - if [ -z "$TRAVIS_TAG" ]; then - export TRAVIS_TAG=nightly-$COMMIT_ID RELEASE_TITLE=$(date +'%Y%m%d')-$COMMIT_ID && + export TRAVIS_TAG=nightly-$COMMIT_ID RELEASE_TITLE=$(date +'%Y%m%d-%H%M%S') RELEASE_FILE=qb-web-$RELEASE_TITLE.zip && git tag $TRAVIS_TAG && echo tagged as $TRAVIS_TAG; fi @@ -23,12 +23,12 @@ before_deploy: # see https://github.com/qbittorrent/qBittorrent/pull/10485, fixed in qb v4.2.0 - cp dist/public/{index,login}.html - cp INSTALL.md dist - - zip -r dist.zip dist + - zip -r $RELEASE_FILE dist deploy: provider: releases api_key: $GITHUB_OAUTH_TOKEN - file: dist.zip + file: $RELEASE_FILE skip_cleanup: true overwrite: true prerelease: true