-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathrelease.sh
213 lines (175 loc) · 6.51 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
#!/bin/sh
# The slug of your WordPress.org plugin
PLUGIN_SLUG="auto-load-next-post"
# GITHUB user who owns the repo
GITHUB_REPO_OWNER="autoloadnextpost"
# GITHUB Repository name
GITHUB_REPO_NAME="auto-load-next-post"
set -e
clear
# ASK INFO
echo "-------------------------------------------------------"
echo " Github to WordPress.org Auto Load Next Post Release "
echo "-------------------------------------------------------"
read -p "TAG AND RELEASE VERSION: " VERSION
echo "-------------------------------------------------------"
echo ""
echo "Before continuing, confirm that you have done the following :)"
echo ""
read -p " - Added a changelog for "${VERSION}"?"
read -p " - Set version in the readme.txt and main file to "${VERSION}"?"
read -p " - Set stable tag in the readme.txt file to "${VERSION}"?"
read -p " - Updated the POT file?"
read -p " - Committed all changes up to GITHUB?"
echo ""
read -p "Press [ENTER] to begin releasing "${VERSION}
clear
# VARS
ROOT_PATH=""
TEMP_GITHUB_REPO=${PLUGIN_SLUG}"-git"
TEMP_SVN_REPO=${PLUGIN_SLUG}"-svn"
SVN_REPO="https://plugins.svn.wordpress.org/"${PLUGIN_SLUG}"/"
GIT_REPO="[email protected]:"${GITHUB_REPO_OWNER}"/"${GITHUB_REPO_NAME}".git"
echo "-------------------------------------------------------"
echo "Did you tag a beta or a release candidate last?"
read -p "Enter Y for Yes or N for No "${BETA}""
echo "-------------------------------------------------------"
clear
# Check if version is already released.
if ${BETA} = 'n' && $ROOT_PATH git show-ref --tags --exclude-existing | egrep -q "refs/tags/v${VERSION}"
then
echo "-------------------------------------------------------"
echo "Version already tagged and released.";
echo ""
echo "Run sh release.sh again and enter another version.";
echo "-------------------------------------------------------"
exit 1;
else
echo "-------------------------------------------------------"
echo "v${VERSION} has not been found released. Now processing...";
echo "-------------------------------------------------------"
fi
# DELETE OLD TEMP DIRS
rm -Rf $ROOT_PATH$TEMP_GITHUB_REPO
# CHECKOUT SVN DIR IF NOT EXISTS
if [[ ! -d $TEMP_SVN_REPO ]];
then
echo "Checking out WordPress.org plugin repository"
echo "-------------------------------------------------------"
svn checkout $SVN_REPO $TEMP_SVN_REPO || { echo "Unable to checkout repo."; exit 1; }
fi
clear
# CLONE GIT DIR
echo "---------------------------------------------------------------------"
echo "Cloning GIT repository from GitHub.com"
echo "---------------------------------------------------------------------"
git clone --progress $GIT_REPO $TEMP_GITHUB_REPO || { echo "Unable to clone repo."; exit 1; }
# MOVE INTO GIT DIR
cd $ROOT_PATH$TEMP_GITHUB_REPO
# Update local tags just incase.
clear
echo "Fetching remote tags to update locally."
git fetch --tags
clear
# List Branches
echo "---------------------------------------------------------------------"
git branch -r || { echo "Unable to list branches."; exit 1; }
echo "---------------------------------------------------------------------"
read -p "Which branch do you wish to release? /" BRANCH
# Switch Branch
echo "---------------------------------------------------------------------"
echo "Switching to branch "${BRANCH}
# IF BRANCH WAS LEFT EMPTY THEN FETCH "master" BY DEFAULT
if [[ -z ${BRANCH} ]]; then
BRANCH=master
else
git checkout ${BRANCH} || { echo "Unable to checkout branch."; exit 1; }
fi;
echo "---------------------------------------------------------------------"
read -p "Press [ENTER] to remove unwanted files before release."
# REMOVE UNWANTED FILES & FOLDERS
echo "---------------------------------------------------------------------"
echo "Removing unwanted files..."
echo "---------------------------------------------------------------------"
rm -Rf .wordpress-org
rm -Rf .git
rm -Rf .github
rm -Rf tests
rm -Rf apigen
rm -Rf screenshots
rm -f .gitattributes
rm -f .gitignore
rm -f .gitmodules
rm -f Gruntfile.js
rm -f .jscrsrc
rm -f .jshintrc
rm -f phpunit.xml.dist
rm -f .editorconfig
rm -f apigen.neon
rm -f *.json
rm -f *.yml
rm -f *.xml
rm -f *.md
rm -f *.png
rm -f *.sh
clear
echo "---------------------------------------------------------------------"
read -p "READY! Press [ENTER] to deploy branch "${BRANCH}
# MOVE INTO SVN DIR
cd "../"$TEMP_SVN_REPO
# UPDATE SVN
echo "---------------------------------------------------------------------"
echo "Updating SVN"
svn update || { echo "Unable to update SVN."; exit 1; }
# DELETE TRUNK
echo "---------------------------------------------------------------------"
echo "Replacing TRUNK folder"
rm -Rf trunk/
# COPY GIT DIR TO TRUNK
cp -R "../"$TEMP_GITHUB_REPO trunk/
# DO THE ADD ALL NOT KNOWN FILES UNIX COMMAND
svn add --force * --auto-props --parents --depth infinity -q
# DO THE REMOVE ALL DELETED FILES UNIX COMMAND
MISSING_PATHS=$( svn status | sed -e '/^!/!d' -e 's/^!//' )
# iterate over filepaths
for MISSING_PATH in $MISSING_PATHS; do
svn rm --force "$MISSING_PATH"
done
# COPY TRUNK TO TAGS/$VERSION
echo "---------------------------------------------------------------------"
echo "Copying TRUNK to new tag"
svn copy trunk tags/${VERSION} || { echo "Unable to create tag."; exit 1; }
# DO SVN COMMIT
clear
echo "Show SVN status"
svn status
# PROMPT USER
echo "---------------------------------------------------------------------"
read -p "Press [ENTER] to commit release "${VERSION}" to WordPress.org AND GitHub."
echo "---------------------------------------------------------------------"
# CREATE THE GITHUB RELEASE
echo "Creating release on GITHUB repository."
cd "$GITPATH"
echo "---------------------------------------------------------------------"
echo "Tagging new version in git"
git tag -a "v${VERSION}" -m "Tagging version v${VERSION}"
echo "---------------------------------------------------------------------"
echo "Pushing latest commit to origin, with tags"
git push origin master
git push origin master --tags
# DEPLOY
echo "---------------------------------------------------------------------"
echo "Committing to WordPress.org... this may take a while..."
svn commit -m "Releasing "${VERSION}"" || { echo "Unable to commit."; exit 1; }
# REMOVE THE TEMP DIRS
echo "---------------------------------------------------------------------"
echo "Cleaning Up..."
cd "../"
rm -Rf $ROOT_PATH$TEMP_GITHUB_REPO
rm -Rf $ROOT_PATH$TEMP_SVN_REPO
# DONE
echo "---------------------------------------------------------------------"
echo "Release Done."
echo "---------------------------------------------------------------------"
read -p "Press [ENTER] to close program."
clear