I have created a CI/CD process for a .NET Core console app. The steps in TeamCity are
- Restore the project
- Build Project
- Run Tests
- Publish in Release Mode
- Pack project
- Publish to Octopus Nuget feed
In my Octopus Deploy Library, i can see the latest package there with the package version.
However i want to deploy this package to a specific folder on my target server with the .exe and .dlls, but, it seems like Octopus Deploy is only deploying this package as a .nupkg and is not unpacking it.
The question is, is there a process step to unpack this .nupkg and extrackt all the exes and dlls into a directory on the target server from Octopus Deploy ?
nupkg
files are just zip files, so you could unzip it. – user47589