beacon-node-builds: fix nightly tag clobbering issue
Using single_branch:true avoids cloning other tags/branches. Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
eb1fea5716
commit
4fc3ac2689
|
@ -13,8 +13,10 @@
|
|||
version: '{{ item.version }}'
|
||||
dest: '{{ beacon_node_builds_path }}/{{ item.name }}/repo'
|
||||
force: true
|
||||
# Normally we don't update or timer might miss some changes.
|
||||
update: '{{ item.get("update", false) }}'
|
||||
update: true
|
||||
# Fix for issues with clobbering of nightly tag
|
||||
# WARNING: Requires Ansible 2.11 or newer.
|
||||
single_branch: true
|
||||
become_user: '{{ beacon_node_builds_user }}'
|
||||
|
||||
- name: '{{ item.name }} - Create script'
|
||||
|
|
Loading…
Reference in New Issue