update deploy

This commit is contained in:
Akolzin Dmitry 2020-02-18 12:53:31 +03:00
parent 353557effe
commit 24413ee15b
2 changed files with 16 additions and 12 deletions

View File

@ -23,6 +23,7 @@ env:
stages:
- test
- build
- deploy
before_script: make before_script
@ -31,21 +32,16 @@ script: composer test
jobs:
include:
- stage: deploy
- stage: build
before_script: skip
script: make build_archive
before_deploy:
- export VERSION=`cat VERSION`
- export ARCHIVE_NAME=/tmp/retailcrm-$VERSION.zip
- git config --local user.name "retailCRM"
- git config --local user.email "support@retailcrm.ru"
- export TRAVIS_TAG=v$VERSION
- git tag $TRAVIS_TAG
- stage: deploy
before_script: skip
before_deploy: make tag
deploy:
provider: releases
api_key: $GITHUB_OAUTH_TOKEN
skip_cleanup: true
file: $ARCHIVE_NAME
if: (branch = master) AND (type = push) AND (fork = true)
on:
php: 7.1
if: (branch = master) AND (type = push) AND (fork = true)
after_deploy: make delete_archive

View File

@ -21,3 +21,11 @@ before_script:
bin/robo --load-from tests/RoboFile.php project:deploy
(php -S localhost:8000 -t www &) 2> /dev/null > /dev/null
sleep 2
tag:
export VERSION=`cat VERSION`
export ARCHIVE_NAME=/tmp/retailcrm-$VERSION.zip
git config --local user.name "retailCRM"
git config --local user.email "support@retailcrm.ru"
export TRAVIS_TAG=v$VERSION
git tag $TRAVIS_TAG