1

在我的 azure devops 管道中设置 github 发布任务时遇到问题。管道 yml 如下所示(如果有任何用途,它用于多框架 nuget 包):

trigger:
- master

pool:
  vmImage: 'ubuntu-latest'

workspace:
    clean: all

...

- task: GitHubRelease@1
  inputs:
    gitHubConnection: '**/**'
    repositoryName: '$(Build.Repository.Name)'
    action: 'create'
    target: '$(Build.SourceVersion)'
    tagSource: 'gitTag'
    tagPattern: 'v*'
    changeLogCompareToRelease: 'lastFullRelease'
    changeLogType: 'commitBased'

我输入标签的确切名称(例如 tagPattern:'v1')它工作正常。如果我使用上面的标签模式并推送相同的标签 v1,它只会给我##[warning]Release will not be created as the tags for the target commit do not match with the given tag pattern警告。

我尝试了其他一些正则表达式模式,但似乎模式匹配根本不起作用,只指定了确切的 git 标签名称。所以我的问题是,是否有一些我不知道的已知问题,或者如果我错过了我应该在这里做的事情?

4

1 回答 1

1

从代码来看,它是将标签模式粘贴到正则表达式中。因此,您当前的模式将匹配零个或多个v's。您需要v.*匹配以 . 开头的所有标签v

看:

于 2020-05-30T21:59:42.100 回答