add build-all script

This commit is contained in:
Stewart Allen 2024-07-19 20:39:48 -04:00
commit 89e4e03700

5
bin/build-upload-all Executable file
View file

@ -0,0 +1,5 @@
#!/bin/bash
tag=${1:-latest}
./bin/build-upload mac ${tag} && \
./bin/build-upload win ${tag} && \
./bin/build-upload linux ${tag}