-
Notifications
You must be signed in to change notification settings - Fork 174
/
release.sh
executable file
·52 lines (43 loc) · 1.61 KB
/
release.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/bin/sh
export GITHUB_USER=chilipeppr
export GITHUB_REPO=serial-port-json-server
echo "About to create a Github release for Serial Port JSON Server"
if [ "$1" = "" ]; then
echo "You need to pass in the version number as the first parameter like ./release 1.87"
exit
fi
echo ""
echo "Before creating release"
bin/github-release info
bin/github-release release \
--tag v$1 \
--name "Serial Port JSON Server" \
--description "A server for the Internet of Things. Lets you serve up serial ports to websockets so you can write front-end apps for your IoT devices in the browser." \
echo ""
echo "After creating release"
bin/github-release info
echo ""
echo "Uploading binaries"
# upload a file, for example the OSX/AMD64 binary of my gofinance app
bin/github-release upload \
--tag v$1 \
--name "serial-port-json-server-$1_linux_amd64.tar.gz" \
--file snapshot/serial-port-json-server-$1_linux_amd64.tar.gz
bin/github-release upload \
--tag v$1 \
--name "serial-port-json-server-$1_linux_386.tar.gz" \
--file snapshot/serial-port-json-server-$1_linux_386.tar.gz
bin/github-release upload \
--tag v$1 \
--name "serial-port-json-server-$1_linux_arm.tar.gz" \
--file snapshot/serial-port-json-server-$1_linux_arm.tar.gz
bin/github-release upload \
--tag v$1 \
--name "serial-port-json-server-$1_windows_386.zip" \
--file snapshot/serial-port-json-server-$1_windows_386.zip
bin/github-release upload \
--tag v$1 \
--name "serial-port-json-server-$1_windows_amd64.zip" \
--file snapshot/serial-port-json-server-$1_windows_amd64.zip
echo ""
echo "Done"