mirror of
https://github.com/retailcrm/opencart-module.git
synced 2024-11-21 20:56:07 +03:00
update deploy
This commit is contained in:
parent
353557effe
commit
24413ee15b
18
.travis.yml
18
.travis.yml
@ -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
|
10
Makefile
10
Makefile
@ -20,4 +20,12 @@ before_script:
|
||||
composer setup
|
||||
bin/robo --load-from tests/RoboFile.php project:deploy
|
||||
(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
|
Loading…
Reference in New Issue
Block a user