Skip to content

Commit e64ec7a

Browse files
committed
Add upload target to the Makefile and update the links
1 parent 6731f19 commit e64ec7a

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

Makefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,9 @@ release:
44
GOOS=windows GOARCH=amd64 go build -o ./bin/$(binary)_windows_amd64
55
GOOS=linux GOARCH=amd64 go build -o ./bin/$(binary)_linux_amd64
66
GOOS=darwin GOARCH=amd64 go build -o ./bin/$(binary)_darwin_amd64
7+
8+
upload:
9+
gsutil -m cp -r ./bin/* gs://hey-releases/
10+
11+
release-upload: release upload
12+

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ To preserve the name for its original owner, we renamed this project to hey.
99

1010
## Installation
1111

12-
* Linux 64-bit: https://hey-release.s3.us-east-2.amazonaws.com/hey_linux_amd64
13-
* Mac 64-bit: https://hey-release.s3.us-east-2.amazonaws.com/hey_darwin_amd64
14-
* Windows 64-bit: https://hey-release.s3.us-east-2.amazonaws.com/hey_windows_amd64
12+
- Linux (amd64): https://storage.googleapis.com/hey-releases/hey_linux_amd64
13+
- macOS (amd64): https://storage.googleapis.com/hey-releases/hey_darwin_amd64
14+
- Windows (amd64): https://storage.googleapis.com/hey-releases/hey_windows_amd64
1515

1616
### Package Managers
1717

0 commit comments

Comments
 (0)