No package found with specified pattern: D:\a\r1\a\**\*.zip

后端 未结 9 1522
太阳男子
太阳男子 2021-01-04 07:25

I created a build definition in vsts with npm build and then I copy the build folder to the drop location.

The build pipeline is working fine

Then I created

9条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2021-01-04 08:02

    You can't use wildcards for folder names unfortunately, only for file names. If you're using a 'Copy Files' build task you can put this value in 'Source Folder':
    D:\a\r1\a\

    and this value in 'Contents':
    **\*.zip

    Or you can put the full file directories with *.zip. Good luck.

提交回复
热议问题