我在 TeamCity 9.1 项目配置中的最后一个构建步骤使用 SMB 部署程序将文件复制到共享网络驱动器(我们使用它来将版本部署给我们的用户)。
复制执行得很好,但部署者以某种方式创建了指向该文件夹的层次结构中的所有文件bin
夹。例子:
我的配置是:
目标网址:
\\theserver\thefolder
工件路径:
**\ProjectName\bin\Release\* => .
**\ProjectName\bin\Release\Resources\* => Resources
使用此配置,我希望将文件复制到\\theserver\thefolder\*
和\\theserver\thefolder\Resources\*
但是,这是我得到的结果:我的文件被复制到
\\theserver\thefolder\ProjectName\bin\Release\*
\\theserver\thefolder\Resources\ProjectName\bin\Release\Resources\*
如何使用我的工件定义,以便将我的文件复制到正确的文件夹?我很难使用这种语法