Skip to content

Commit 399c686

Browse files
authored
Merge pull request #547 from Automattic/update/publishing-instructions
Update publishing instructions
2 parents 01a77d6 + ec05c07 commit 399c686

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.svnignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
*.map
12
BLOCKS.md
23
CONTRIBUTING.md
34
composer.json
@@ -7,8 +8,6 @@ package.json
78
phpunit.xml
89
PUBLISHING.md
910
README.md
10-
vipgo-helper.php
11-
wpcom-helper.php
1211
webpack.config.js
1312
bin
1413
documentation

PUBLISHING.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,8 @@ Add a message that indicates what version number we're releasing.
104104

105105
From a test site, download the latest version and make sure things work as expected.
106106

107+
For a quick-and-easy test site, use https://jurassic.ninja
108+
107109
6. Celebrate.
108110

109111
We're done! High five! Go enjoy a beverage/dessert/guilty pleasure of your choice!

bin/prepare-svn-release.sh

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,6 @@ for file in $( cat "$EDIT_FLOW_GIT_DIR/.svnignore" 2>/dev/null ); do
7070
done
7171
echo "Done!"
7272

73-
# Tag the release.
74-
svn cp trunk tags/$TARGET
75-
7673
# Instructions for next steps
7774
echo ""
7875
echo "================"
@@ -82,12 +79,16 @@ echo "Please validate 'svn status' results before committing."
8279
echo ""
8380
echo "Some helpful commands:"
8481
echo ""
82+
echo "- goto dir"
83+
echo "cd $EDIT_FLOW_SVN_DIR"
8584
echo "- rm files:"
8685
echo "svn st | grep ^\! | awk '{print \$2}' | xargs svn rm"
8786
echo "- add files:"
8887
echo "svn st | grep ^? | awk '{print \$2}' | xargs svn add"
8988
echo "- review changes:"
9089
echo "svn diff | colordiff | less -FRX"
90+
echo "- tag the release"
91+
echo "svn cp trunk tags/$TARGET"
9192
echo ""
9293
echo "Are there any new files that shouldn't be deployed?"
9394
echo "Please add them to .svnignore in the GitHub repo."

0 commit comments

Comments
 (0)