0

Is it possible to build on the last tag with concourse? Similar to /tags/ in the branch specifier with jenkins.

ecl0
  • 385
  • 1
  • 3
  • 13

1 Answers1

2

There is a tag_filter property available for the git resource type. See git resource type documentation for further documentation.

So something like:

resources:
- name: source-code
  type: git
  source:
    uri: git@github.com:concourse/git-resource.git
    branch: master
    tag_filter: "*"

should work.

JTandler
  • 21
  • 1