2017-05-30 3 views

Antwort

2

Für den Ressourcentyp git ist eine Eigenschaft tag_filter verfügbar. Weitere Informationen finden Sie unter git resource type documentation.

So etwas wie:

resources: 
- name: source-code 
    type: git 
    source: 
    uri: [email protected]:concourse/git-resource.git 
    branch: master 
    tag_filter: "*" 

sollte funktionieren.

Verwandte Themen