mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-31 17:11:23 -07:00
Remove unused quotes - web_infrastructure/deploy_helper.py (#19157)
This commit is contained in:
parent
e32b0da0b0
commit
372352f35d
1 changed files with 3 additions and 3 deletions
|
@ -171,9 +171,9 @@ procedure to remove it during cleanup.
|
||||||
path: /path/to/root
|
path: /path/to/root
|
||||||
- name: Clone the project to the new release folder
|
- name: Clone the project to the new release folder
|
||||||
git:
|
git:
|
||||||
repo: 'git://foosball.example.org/path/to/repo.git'
|
repo: git://foosball.example.org/path/to/repo.git
|
||||||
dest: '{{ deploy_helper.new_release_path }}'
|
dest: '{{ deploy_helper.new_release_path }}'
|
||||||
version: 'v1.1.1'
|
version: v1.1.1
|
||||||
- name: Add an unfinished file, to allow cleanup on successful finalize
|
- name: Add an unfinished file, to allow cleanup on successful finalize
|
||||||
file:
|
file:
|
||||||
path: '{{ deploy_helper.new_release_path }}/{{ deploy_helper.unfinished_filename }}'
|
path: '{{ deploy_helper.new_release_path }}/{{ deploy_helper.unfinished_filename }}'
|
||||||
|
@ -227,7 +227,7 @@ procedure to remove it during cleanup.
|
||||||
# Using your own naming strategy for releases (a version tag in this case):
|
# Using your own naming strategy for releases (a version tag in this case):
|
||||||
- deploy_helper:
|
- deploy_helper:
|
||||||
path: /path/to/root
|
path: /path/to/root
|
||||||
release: 'v1.1.1'
|
release: v1.1.1
|
||||||
state: present
|
state: present
|
||||||
- deploy_helper:
|
- deploy_helper:
|
||||||
path: /path/to/root
|
path: /path/to/root
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue