Add distribute task.

Once the pear channel is setup, this will publish tar
files to the pear channel.
This commit is contained in:
mark_story 2011-12-29 10:33:04 -05:00
parent ce80a78763
commit 393bc7f1e5

View file

@ -133,6 +133,9 @@
<echo msg="Version number updated." /> <echo msg="Version number updated." />
</target> </target>
<!--
Create the release commit that updates the version number and pushes the commits.
-->
<target name="release-commit" depends="prepare,next-version"> <target name="release-commit" depends="prepare,next-version">
<echo msg="Creating new release commit" /> <echo msg="Creating new release commit" />
<exec command="git add ./lib/Cake/VERSION.txt" /> <exec command="git add ./lib/Cake/VERSION.txt" />
@ -152,10 +155,18 @@
<echo msg="Pushed commit and tag." /> <echo msg="Pushed commit and tag." />
</target> </target>
<!--
Upload to pirium pear channel.
-->
<target name="distribute">
</target>
<!-- top level easy to type targets -->
<!--
Top level easy to type targets
-->
<target name="build" depends="generate-package" /> <target name="build" depends="generate-package" />
<target name="release" depends="release-commit,build" /> <target name="release" depends="release-commit,build,distribute" />
</project> </project>