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