Przeglądaj źródła

fix lints

pull/2217/head
ikkemaniac 3 lat temu
rodzic
commit
39e6484956
1 zmienionych plików z 6 dodań i 6 usunięć
  1. +6
    -6
      roles/matrix-base/tasks/setup_matrix_base.yml

+ 6
- 6
roles/matrix-base/tasks/setup_matrix_base.yml Wyświetl plik

@@ -21,11 +21,11 @@


- name: Save current git-repo status on the target to aid with restoring in case of problems - name: Save current git-repo status on the target to aid with restoring in case of problems
block: block:
- name: Get local git hash
- name: Get local git hash
delegate_to: 127.0.0.1 delegate_to: 127.0.0.1
become: false become: false
register: git_describe register: git_describe
shell:
ansible.builtin.shell:
git describe git describe
--always --always
--tags --tags
@@ -33,15 +33,15 @@
--long --long
--all --all


- set_fact:
- ansible.builtin.set_fact:
git_hash: "{{ git_describe.stdout }}" git_hash: "{{ git_describe.stdout }}"


- name: Git hash - name: Git hash
debug:
ansible.builtin.debug:
msg: "Git hash: {{ git_hash }}" msg: "Git hash: {{ git_hash }}"
- name: Save git_hash.yml on target - name: Save git_hash.yml on target
copy:
ansible.builtin.copy:
content: "{{ git_hash }}" content: "{{ git_hash }}"
dest: "{{ matrix_base_data_path }}/git_hash.yml" dest: "{{ matrix_base_data_path }}/git_hash.yml"
owner: "{{ matrix_user_username }}" owner: "{{ matrix_user_username }}"


Ładowanie…
Anuluj
Zapisz