d63aba568d
Add authtoken for youtuber in test data setup to call transfer api Update e2e test to include scenario where we transfer channel.
8 lines
No EOL
203 B
Bash
Executable file
8 lines
No EOL
203 B
Bash
Executable file
#!/bin/bash
|
|
if [ $# -eq 0 ]
|
|
then
|
|
echo "No docker tag argument supplied. Use './build.sh <tag>'"
|
|
exit 1
|
|
fi
|
|
docker build --build-arg VERSION=$1 --tag lbry/lbrycrd:$1 .
|
|
docker push lbry/lbrycrd:$1 |