mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 02:12:23 +00:00
Fix wrong conditions
This commit is contained in:
parent
99920424c9
commit
cb6cb53bfc
1 changed files with 4 additions and 2 deletions
|
|
@ -65,14 +65,16 @@ jobs:
|
||||||
- bash docker_push.sh latest
|
- bash docker_push.sh latest
|
||||||
- bash docker_push.sh $TRAVIS_BUILD_ID
|
- bash docker_push.sh $TRAVIS_BUILD_ID
|
||||||
on:
|
on:
|
||||||
branch: master AND tags = false
|
branch: master
|
||||||
|
condition: tags = false
|
||||||
deploy:
|
deploy:
|
||||||
provider: script
|
provider: script
|
||||||
script:
|
script:
|
||||||
- bash docker_push.sh latest
|
- bash docker_push.sh latest
|
||||||
- bash docker_push.sh $TRAVIS_TAG
|
- bash docker_push.sh $TRAVIS_TAG
|
||||||
on:
|
on:
|
||||||
branch: master AND tags = true
|
branch: master
|
||||||
|
condition: tags = true
|
||||||
|
|
||||||
- stage: Trigger rebuild of infrastructure image
|
- stage: Trigger rebuild of infrastructure image
|
||||||
sudo: false
|
sudo: false
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue