Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tags filter #486

Open
FeodorFitsner opened this issue Nov 5, 2015 · 5 comments
Open

Tags filter #486

FeodorFitsner opened this issue Nov 5, 2015 · 5 comments
Milestone

Comments

@FeodorFitsner
Copy link
Member

Discussion: http://help.appveyor.com/discussions/suggestions/868-only-build-for-tags-that-match-a-given-pattern

@ShaneYu
Copy link

ShaneYu commented Jul 4, 2016

This would be a handy feature.

@bompi88
Copy link

bompi88 commented Jun 10, 2017

Currently I'm using this for semantic versioning:

branches:
  only:
    - /v\d+\.\d+\.\d+((-beta.\d+)|(-\d+))?/

@pklauzinski
Copy link

CircleCI, Travis CI, and Jenkins all offer this feature. Why not AppVeyor?

@IlyaFinkelshteyn IlyaFinkelshteyn added this to the Q3-2018 milestone Aug 26, 2018
@IlyaFinkelshteyn IlyaFinkelshteyn self-assigned this Aug 26, 2018
@IlyaFinkelshteyn
Copy link
Contributor

@pklauzinski we plan to do it soon

@pklauzinski
Copy link

As a workaround in the meantime, I am using PowerShell to match conditionally on the tag name we use for releases in my build configuration.

build_script:
  - ps: >-
      if ($env:APPVEYOR_REPO_TAG_NAME -match '^release-') {
        ...
      }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants