Closed oonemo closed 7 years ago
What's with all the duplicate commits here? My guess is that you're running the mvn command directly to do a release?
mvn
I'd just drop all those commits (rollback to previous version in pom.xml and then just use the make target for the release (make release). See: https://github.com/awslabs/aws-device-farm-jenkins-plugin/blob/master/Makefile#L17
pom.xml
make release
Specifically that mvn release:clean in there should rollback a partially run release if it ran into an issue.
mvn release:clean
What's with all the duplicate commits here? My guess is that you're running the
mvn
command directly to do a release?I'd just drop all those commits (rollback to previous version in
pom.xml
and then just use the make target for the release (make release
). See: https://github.com/awslabs/aws-device-farm-jenkins-plugin/blob/master/Makefile#L17Specifically that
mvn release:clean
in there should rollback a partially run release if it ran into an issue.