Consuming the TeamCity NuGet feed in Octopus

Hi
I’m having a problem while trying to Create and deploy via octopus NuGet artifact in the same TeamCity project (without dependencies).
The problem is that Octopus doesn’t take the last artifact, but the previous one.
I read the “Tip: delayed package publishing” in http://docs.octopusdeploy.com/display/OD/TeamCity, and understood from it (and the movie) that i need to create 2 seperate TeamCity projects and create a dependency betwee them.

Is there any other way (to create and deploy in the same TeamCity project)?

Br,
Uri

Hi,

The only other way is to have a TeamCity build that looks like this:

  1. Compile, test, package
  2. Publish to a NuGet feed (either the new built-in Octopus feed, or a file share etc.)
  3. Deploy

You won’t be able to use the built-in TeamCity feed unfortunately.

Paul

Excellent!!
It works perfectly.

Tnx