From 4617299efb64cdc9df86e6770209c4414d56c142 Mon Sep 17 00:00:00 2001 From: Christoph Wiechert Date: Tue, 14 Apr 2020 11:16:39 +0200 Subject: [PATCH] Add: Travis --- .travis.yml | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/.travis.yml b/.travis.yml index 511b290..47f823e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,17 +8,17 @@ script: before_deploy: - if [ -n "$TRAVIS_TAG" ] ; then npm version $TRAVIS_TAG ; fi - > - tar -czf psitransfer-$TRAVIS_TAG.tar.gz - LICENSE - README.md - Dockerfile - .dockerignore - app.js - config.js - package.json - package-lock.json - docs - lib + tar -czf psitransfer-$TRAVIS_TAG.tar.gz \ + LICENSE \ + README.md \ + Dockerfile \ + .dockerignore \ + app.js \ + config.js \ + package.json \ + package-lock.json \ + docs \ + lib \ public deploy: @@ -27,3 +27,5 @@ deploy: overwrite: true file: $TRAVIS_BUILD_DIR/psitransfer-$TRAVIS_TAG.tar.gz skip_cleanup: true + on: + tags: true