Skip to content

Commit

Permalink
Fix creating tags
Browse files Browse the repository at this point in the history
  • Loading branch information
aimeos committed Mar 11, 2015
1 parent eb2e0db commit ec03c7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion phing.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<target name="release" description="Creates new release" depends="build">
<propertyprompt propertyName="version" promptText="Enter release version" promptCharacter=":" useExistingValue="true"/>
<exec command="git branch ${version}" checkreturn="true" logoutput="true" />
<exec command="git tag -a ext-ai-monolog_${version} -m 'Release ${version}'" checkreturn="true" logoutput="true" />
<exec command="git tag -a ${version}.0 -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>
Expand Down

0 comments on commit ec03c7d

Please sign in to comment.