From f67455c2b7cdf205f4f43cf5bdde80058a1f99e9 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Mon, 30 Apr 2018 14:15:45 -0700 Subject: [PATCH] appveyor: fix branch config [ci skip] --- .appveyor.yml | 39 ++++++++++++++++++++++----------------- 1 file changed, 22 insertions(+), 17 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index f9c1b93b7..275548f51 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -58,24 +58,29 @@ build_script: artifacts: - path: hledger.zip -# overriding common configuration: -for: +branches: + only: + - master # master is set as default branch in UI, and built nightly by cron + - /^[0-9.]+$/ # release branches will be build on each push (would prefer on tag) -# settings specific to master branch -# master is set as default branch in UI, and built nightly by cron -- - branches: - only: - - master - -# settings specific to release branches -# release branches are built on tag push -- - branches: - only: - - /^[0-9.]+$/ - on: - appveyor_repo_tag: true +## overriding common configuration: +#for: +# +## settings specific to master branch +## master is set as default branch in UI, and built nightly by cron +#- +# branches: +# only: +# - master +# +## settings specific to release branches +## release branches are built on tag push +#- +# branches: +# only: +# - /^[0-9.]+$/ +# on: # https://ci.appveyor.com/tools/validate-yaml: Invalid setting or section: on +# appveyor_repo_tag: true # deployment stuff