-
Notifications
You must be signed in to change notification settings - Fork 2
/
deploy.sh
executable file
·56 lines (47 loc) · 1.34 KB
/
deploy.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
53
54
55
56
#!/bin/bash
############################################################
# Help #
############################################################
Help()
{
# Display Help
echo "deploy docusaurus"
echo
echo "Syntax: deploy.sh -b branch_name"
echo "options:"
echo "b add branch name [REQUIRED]"
echo "h Print this Help."
echo
}
############################################################
############################################################
# Main program #
############################################################
############################################################
unset Branch
############################################################
# Process the input options. Add options as needed. #
############################################################
# Get the options
while getopts ":hb:" option; do
case $option in
h) # display Help
Help
exit;;
b)
Branch=$OPTARG;;
\?) # Invalid option
echo "Error: Invalid option"
exit;;
esac
done
if [ -z "$Branch" ]
then
echo "Error: need a branch name"
else
echo "Deploying $Branch"
git fetch --all
git reset --hard origin/$Branch
npm install
npm run build
fi