Hello,
I am still very new to bamboo. What I try to do is collecting all .dacpac files that are created during the build process.
image: microsoft/dotnet:latest
pipelines:
default:
- step:
script: # Modify the commands below to build your repository.
- cd BackgroundCode
- dotnet restore
- dotnet run
artifacts:
- '../**/*.dacpac'
The directory structure would be 'agent/build/Projects/[Projectname]/[Projectname].dacpac'.
The output of the pipeline says
Successfully generated zip archive /opt/atlassian/pipelines/agent/build/Projects/[ProjectName]/[ProjectName].dacpac
which means there are really files generated during the build process.
Have I done something wrong? If no, where would I find those artifacts.
Hi Patrick,
Try defining it in the build itself.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.