Skip to content

Commit

Permalink
Fixed release target
Browse files Browse the repository at this point in the history
  • Loading branch information
aimeos committed Oct 1, 2015
1 parent c7253e0 commit aea7224
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion phing.xml
Expand Up @@ -31,7 +31,8 @@
</target>

<target name="release" description="Creates new release" depends="build">
<exec command="git add . && git commit -a" checkreturn="true" logoutput="true" />
<exec command="git add ." checkreturn="true" logoutput="true" />
<exec command="git commit -a" checkreturn="true" logoutput="true" />
<propertyprompt propertyName="version" promptText="Enter release version" promptCharacter=":" useExistingValue="true"/>
<exec command="git checkout -b ${version}" checkreturn="true" logoutput="true" />
<exec command="git tag -a ${version}.1 -m 'Release ${version}.1'" checkreturn="true" logoutput="true" />
Expand Down

0 comments on commit aea7224

Please sign in to comment.