Update gitlab-ci

skip js-release in nightly builds
[ci skip]
This commit is contained in:
Denis S. Soldatov aka General-Beck 2016-11-08 23:46:22 +07:00 committed by GitHub
parent b2fe406666
commit 82990ee464

View File

@ -490,9 +490,9 @@ js-release:
- tags - tags
image: ethcore/rust:stable image: ethcore/rust:stable
before_script: before_script:
- ./js/scripts/install-deps.sh - if [[ $NIGHTLY != "master" ]]; then ./js/scripts/install-deps.sh; fi
script: script:
- ./js/scripts/build.sh - if [[ $NIGHTLY != "master" ]]; then ./js/scripts/build.sh; fi
- ./js/scripts/release.sh - if [[ $NIGHTLY != "master" ]]; then ./js/scripts/release.sh; fi
tags: tags:
- javascript - javascript