-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeploy.sh
More file actions
executable file
·108 lines (87 loc) · 3.73 KB
/
Copy pathdeploy.sh
File metadata and controls
executable file
·108 lines (87 loc) · 3.73 KB
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
#! /bin/bash
# A modification of Dean Clatworthy's deploy script as found here: https://github.com/deanc/wordpress-plugin-git-svn
# The difference is that this script lives in the plugin's git repo & doesn't require an existing SVN repo.
# import main config
CONFIG_FILE="./deploy-config.sh"
if ! test -f $CONFIG_FILE;
then
echo "$CONFIG_FILE does not exist. Please create it with the following configuration options:
PLUGINSLUG=\"Your plugin slug as submitted to wordpress.org\"
MAINFILE=\"The name of your main php file in the wordpress plugin\"
SVNUSER=\"your svn username\""
exit 1
else
. $CONFIG_FILE
fi
CURRENTDIR=`pwd`
# git config
GITPATH="$CURRENTDIR/" # this file should be in the base of your git repository
# svn config
SVNPATH="/tmp/$PLUGINSLUG" # path to a temp SVN repo. No trailing slash required and don't add trunk.
SVNURL="http://plugins.svn.wordpress.org/$PLUGINSLUG/" # Remote SVN repo on wordpress.org, with trailing slash
SVNUSER="konnektiv" # your svn username
# Let's begin...
echo ".........................................."
echo
echo "Preparing to deploy wordpress plugin"
echo
echo ".........................................."
echo
# Check if subversion is installed before getting all worked up
if ! which svn >/dev/null; then
echo "You'll need to install subversion before proceeding. Exiting....";
exit 1;
fi
# Check version in readme.txt is the same as plugin file after translating both to unix line breaks to work around grep's failure to identify mac line breaks
NEWVERSION1=`grep "^Stable tag:" $GITPATH/readme.txt | awk -F' ' '{print $NF}'`
echo "readme.txt version: ${NEWVERSION1}"
NEWVERSION2=`grep "^\s*\*\s*Version:" $GITPATH/$MAINFILE | awk -F' ' '{print $NF}'| tr -d '\r'`
echo "$MAINFILE version: ${NEWVERSION2}"
if [ "$NEWVERSION1" != "$NEWVERSION2" ]; then echo "Version in readme.txt & $MAINFILE don't match. Exiting...."; exit 1; fi
echo "Versions match in readme.txt and $MAINFILE. Let's proceed..."
if git show-ref --tags --quiet --verify -- "refs/tags/$NEWVERSION1"
then
echo "Version $NEWVERSION1 already exists as git tag. Checking it out.";
git checkout $NEWVERSION1
else
echo "Git version does not exist. Let's create it."
cd $GITPATH
echo "Tagging new version in git"
git tag -a "$NEWVERSION1" -m "Tagging version $NEWVERSION1"
echo "You should push the new created tag to your git repository with git 'push --tags'"
fi
echo
echo "Creating local copy of SVN repo ..."
svn co $SVNURL $SVNPATH
echo "Exporting the HEAD of master from git to the trunk of SVN"
rsync -r --delete --exclude .git . $SVNPATH/trunk/
echo "Moving files from the asset directory to assets"
mv $SVNPATH/trunk/assets/* $SVNPATH/assets/
rmdir $SVNPATH/trunk/assets/
echo "Ignoring github specific files and deployment script"
svn propset svn:ignore "deploy-config.sh
README.md
.git
.gitignore" "$SVNPATH/trunk/"
echo "Changing directory to SVN and committing to trunk"
cd $SVNPATH/trunk/
# Add all new files that are not set to be ignored
svn status | grep -v "^.[ \t]*\..*" | grep "^?" | awk '{print $2}' | xargs svn add
svn commit --username=$SVNUSER -m "Commiting version $NEWVERSION1"
echo "Changing directory to SVN and committing to assets"
cd $SVNPATH/assets/
# Add all new files that are not set to be ignored
svn status | grep -v "^.[ \t]*\..*" | grep "^?" | awk '{print $2}' | xargs svn add
svn commit --username=$SVNUSER -m "Commiting new assets"
echo "Creating new SVN tag & committing it"
cd $SVNPATH
if test -d tags/$NEWVERSION1/; then
# remove tags directory if it already exist
svn rm --force tags/$NEWVERSION1/
fi
svn copy trunk/ tags/$NEWVERSION1/
cd $SVNPATH/tags/$NEWVERSION1
svn commit --username=$SVNUSER -m "Tagging version $NEWVERSION1"
echo "Removing temporary directory $SVNPATH"
rm -fr $SVNPATH/
echo "*** FIN ***"