24 lines
453 B
YAML
24 lines
453 B
YAML
- git_info: "git.intermodi.ch/p3ls/test"
|
|
register: repo
|
|
|
|
- set_fact:
|
|
line: "{{ '21' | randomstring }}"
|
|
|
|
- lineinfile:
|
|
dest: "{{ repo.dest }}/test.txt"
|
|
line: "{{ line }}"
|
|
|
|
- git_commit:
|
|
repo: "git.intermodi.ch/p3ls/test"
|
|
msg: "{{ line }}"
|
|
|
|
- git_info:
|
|
repo: "git.intermodi.ch/p3ls/test"
|
|
register: repo
|
|
|
|
- git_tag: "git.intermodi.ch/p3ls/test"
|
|
when: not repo.last_commit_is_tagged
|
|
|
|
- git_push: "git.intermodi.ch/p3ls/test"
|
|
|