无法将工件从Appveyor部署到Github

时间:2018-01-20 18:54:29

标签: github appveyor

我收到此消息:

"GitHub" deployment has been skipped as environment variable has not matched ("appveyor_repo_tag" is "false", should be "true")

但是,正如我的Appveyor.yml中所见:

https://github.com/GrokImageCompression/grok/blob/master/appveyor.yml

appveyor_repo_tag实际设置为true

1 个答案:

答案 0 :(得分:2)

  • 删除skip_tags: true
  • 在GitHub部署设置中添加The query contains 0 parameters but you gave it 6 ("sda","sda",2018-01-22 20:23:26,2018-02-21 20:23:26,"sda","sda") (以防止AppVeyor创建新标记,以及无休止的构建循环)
  • 可选择添加tag: $(APPVEYOR_REPO_TAG_NAME)(更新发布详细信息,而不仅仅是文件)
相关问题