5 lines
131 B
Shell
Executable file
5 lines
131 B
Shell
Executable file
#!/bin/bash
|
|
tag=${1:-latest}
|
|
./bin/build-upload win ${tag} && \
|
|
./bin/build-upload linux ${tag} && \
|
|
./bin/build-upload mac ${tag}
|