我使用的是无人机0.8.1与gogs。当我承诺掌握构建时,会触发。当我在GOGS中标记仓库时,没有触发构建,也没有像我期望的那样构建的docker映像。这是我的.drone.yml
文件:
pipeline:
docker:
image: plugins/docker
repo: larktech/mirror-repos
default_tags: true
when:
event: [ push, tag ]
使用GOGS的释放功能,我标记了repo v1.0.1
,但是随后没有构建。承诺主触发了latest
的构建。我想念什么?
当前无人机不支持发行事件webhook,这就是我在GOGS版本中标记版本时所谓的webhook。
。在https://discourse.drone.io/t/tags-not-building-for-me/1236的帮助下,我了解到手动推动标签会触发我的构建:
git tag -a v1.0.6 -m 'another test'
git push origin v1.0.6