From b5d54d05c44e4d27b1ab25b7ef853435ddc4ccc7 Mon Sep 17 00:00:00 2001 From: Daniel Rudolf Date: Thu, 5 Nov 2015 21:58:45 +0100 Subject: [PATCH] Update .travis.yml: Name release archives "pico-release-$TRAVIS_TAG.tar.gz" Should make it easier for a ordinary user to distinct source code and release :smiley: --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 8ff8b12..63fd1fc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,12 +13,12 @@ script: before_deploy: - composer install - - tar -czf "pico-$TRAVIS_TAG.tar.gz" .htaccess README.md changelog.txt composer.json composer.lock license.txt config content-sample lib plugins themes vendor index.php + - tar -czf "pico-release-$TRAVIS_TAG.tar.gz" .htaccess README.md changelog.txt composer.json composer.lock license.txt config content-sample lib plugins themes vendor index.php deploy: provider: releases api_key: ${GITHUB_OAUTH_TOKEN} - file: pico-$TRAVIS_TAG.tar.gz + file: pico-release-$TRAVIS_TAG.tar.gz skip_cleanup: true on: repo: picocms/Pico