java - Jenkins Octopus Integration -
i using jenkins ci tool , using octopus deploy java application. when surfed, solutions deploy .net application using octopack. how pack java application , automatically deploy octopus server jenkins instance?
you can pack nuget (with nuget pack
command, documented here). that's octopack does. create .nuspec
file, , in <files>
section, include files want empty target. example, include files in package:
... <files> <file src="path/to/output/**" target="" /> </files> ...
you can push octopus deploy system using nuget push
. instructions on octopus deploy package library page.
Comments
Post a Comment