fix lints

This commit is contained in:
ikkemaniac 2022-10-31 22:57:16 +01:00
parent 15fbc525cf
commit 39e6484956

View File

@ -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 }}"