Fixing upload and build binaries (#1751)

This commit is contained in:
Philip Hutchins 2019-04-12 13:28:04 -04:00 committed by GitHub
parent c4ba8831c3
commit 04814a3f3d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 1 deletions

View File

@ -260,7 +260,7 @@ endif
.PHONY: binaries-upload
binaries-upload: ## Upload binaries to Google Storage (jenkins)
cd "release/${TAG}"; for f in "*"; do zip "$f".zip "$f"; done
cd "release/${TAG}"; for f in *; do zip $${f}.zip $${f}; done
cd "release/${TAG}"; gsutil -m cp -r *.zip "gs://storj-v3-alpha-builds/${TAG}/"
##@ Clean

0
scripts/release.sh Normal file → Executable file
View File