Bitbucket 管道标签触发器不工作

Bitbucket Pipeline Tags Trigger Not Working

我一直在尝试让这个管道以各种不同的格式触发,这似乎是正确的,但我一定是遗漏了一些东西,因为它仍然无法正常工作。

我只是在 yarn version --prerelease 上添加 git 标签并与应用程序 package.json 版本保持一致。

# This is a sample build configuration for JavaScript.
# Check our guides at https://confluence.atlassian.com/x/14UWN for more examples.
# Only use spaces to indent your .yml configuration.
# -----
# You can specify a custom docker image from Docker Hub as your build environment.
image: node:10.15.3

pipelines:
 tags:
  'v*-*':
     - step:
         script:
         - echo "I FEEL LIKE I'M TAKING CRAZY PILLS"

当我执行 git push 时,我假设我的标签与其他所有内容一起被推送到 bitbucket(它在 GH Actions 中以这种方式工作)。我不得不用 git push --tags 显式推送标签,然后它开始工作。