mirror of
https://github.com/Mailu/Mailu.git
synced 2024-12-14 10:53:30 +02:00
8 lines
170 B
Bash
Executable File
8 lines
170 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Skip deploy for staging branch
|
|
[ "$TRAVIS_BRANCH" = "staging" ] && exit 0
|
|
|
|
docker login -u $DOCKER_UN -p $DOCKER_PW
|
|
docker-compose -f tests/build.yml push
|