mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 03:00:46 +03:00
Fix deploy conditionals
This commit is contained in:
parent
e57f5f848b
commit
74ffef9826
1 changed files with 2 additions and 2 deletions
|
@ -50,8 +50,8 @@ before_script:
|
|||
script:
|
||||
- make ci
|
||||
- if [ $TRAVIS_OS_NAME == osx ]; then make lint; fi
|
||||
- if [ $TRAVIS_OS_NAME == osx && $DEPLOYMENT == 1 ]; then ./.ci/macos/deploy.sh; fi
|
||||
- if [ $TRAVIS_OS_NAME == linux && $DEPLOYMENT == 1 ]; then ./.ci/linux/deploy.sh; fi
|
||||
- if [ $TRAVIS_OS_NAME == osx ] && [ $DEPLOYMENT == 1 ]; then ./.ci/macos/deploy.sh; fi
|
||||
- if [ $TRAVIS_OS_NAME == linux ] && [ $DEPLOYMENT == 1 ]; then ./.ci/linux/deploy.sh; fi
|
||||
|
||||
deploy:
|
||||
- skip_cleanup: true
|
||||
|
|
Loading…
Reference in a new issue