Create .travis.yml
This commit is contained in:
parent
647a7b5bb7
commit
3e0161b51a
1 changed files with 15 additions and 0 deletions
15
.travis.yml
Normal file
15
.travis.yml
Normal file
|
@ -0,0 +1,15 @@
|
|||
language: php
|
||||
php:
|
||||
- 5.4
|
||||
|
||||
script:
|
||||
- composer install
|
||||
- tar -czf pico.tar.gz .htaccess README.md changelog.txt composer.json composer.lock config content-sample index.php lib license.txt plugins themes vendor
|
||||
|
||||
deploy:
|
||||
provider: releases
|
||||
api_key: ${GITHUB_OAUTH_TOKEN}
|
||||
file: pico.tar.gz
|
||||
skip_cleanup: true
|
||||
on:
|
||||
tags: true
|
Loading…
Reference in a new issue