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

View File

@ -20,4 +20,12 @@ before_script:
composer setup composer setup
bin/robo --load-from tests/RoboFile.php project:deploy bin/robo --load-from tests/RoboFile.php project:deploy
(php -S localhost:8000 -t www &) 2> /dev/null > /dev/null (php -S localhost:8000 -t www &) 2> /dev/null > /dev/null
sleep 2 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