forked from aimeos/aimeos-laravel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
19 lines (14 loc) · 943 Bytes
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="UTF-8"?>
<project name="Aimeos Laravel package" default="update">
<target name="update" description="Updates the bundle">
<exec command="git pull https://github.com/aimeos/aimeos-laravel.git" checkreturn="true" logoutput="true" />
<exec command="composer update --working-dir ${project.basedir}" checkreturn="true" logoutput="true" />
</target>
<target name="release" description="Creates new release">
<propertyprompt propertyName="version" promptText="Enter release version" promptCharacter=":" useExistingValue="true"/>
<exec command="git branch ${version}" checkreturn="true" logoutput="true" />
<exec command="git tag -a aimeos-laravel_${version} -m 'Release ${version}'" checkreturn="true" logoutput="true" />
<exec command="git push origin ${version}" checkreturn="true" logoutput="true" />
<exec command="git push --tags" checkreturn="true" logoutput="true" />
</target>
</project>