You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by da...@apache.org on 2013/01/22 12:08:39 UTC

[1/4] git commit: Update release script for new upload mechanism

Update release script for new upload mechanism


Project: http://git-wip-us.apache.org/repos/asf/wicket/repo
Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/baaa0506
Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/baaa0506
Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/baaa0506

Branch: refs/heads/master
Commit: baaa0506d89a1d9accbfa91e25d73bfd5b264f29
Parents: b9d9b24
Author: Martijn Dashorst <da...@apache.org>
Authored: Fri Jan 18 23:59:29 2013 +0100
Committer: Martijn Dashorst <da...@apache.org>
Committed: Fri Jan 18 23:59:40 2013 +0100

----------------------------------------------------------------------
 release-dashorst.sh |   12 +++++++++---
 1 files changed, 9 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/baaa0506/release-dashorst.sh
----------------------------------------------------------------------
diff --git a/release-dashorst.sh b/release-dashorst.sh
index c164e7d..da9583e 100755
--- a/release-dashorst.sh
+++ b/release-dashorst.sh
@@ -226,10 +226,11 @@ popd
 
 echo "Uploading release"
 pushd target/dist
-svn export http://svn.apache.org/repos/asf/wicket/common/KEYS KEYS
+svn mkdir https://dist.apache.org/repos/dist/dev/wicket/wicket-$version -m "Create $version release staging area"
+svn co --force --depth=empty https://dist.apache.org/repos/dist/dev/wicket/wicket-$version .
 cp ../../CHANGELOG* .
-ssh people.apache.org mkdir -p public_html/wicket-$version
-scp -r * people.apache.org:public_html/wicket-$version/
+svn add .
+svn commit -m "Upload wicket-$version to staging area"
 popd
 
 
@@ -251,6 +252,11 @@ echo ""
 echo "    git push origin $branch:refs/heads/$branch"
 echo ""
 
+echo "To move the release from staging to the mirrors:"
+echo ""
+echo "    svn mv https://dist.apache.org/repos/dist/dev/wicket/wicket-$version https://dist.apache.org/repos/dist/release/wicket -m \"Upload release to the mirrors\""
+echo ""
+
 echo "To sign the release tag issue the following three commands: "
 echo ""
 echo "    git checkout $tag"