-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbuild.xml
29 lines (24 loc) · 1.3 KB
/
build.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<project name="Aimeos TYPO3 extension" default="deploy">
<target name="deploy" description="Executes all deployments">
<propertyprompt propertyName="version" promptText="Enter release version" promptCharacter=":" useExistingValue="true"/>
<reflexive>
<fileset dir="." includes="ext_emconf.php" />
<filterchain>
<replaceregexp>
<regexp pattern="'version' => '[^']*'" replace="'version' => '${version}'"/>
</replaceregexp>
</filterchain>
</reflexive>
<exec command="zip -r ../aimeos_dist_${version}.zip * -x \*.git\* public/\* vendor/\*" checkreturn="true" logoutput="true"/>
<filehash file="../aimeos_dist_${version}.zip" hashtype="1" />
<echo msg="SHA1 hash value: ${filehashvalue}" />
</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 ${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>