Skip to content
Snippets Groups Projects
Commit 5b77f4a0 authored by jurgenhaas's avatar jurgenhaas
Browse files

Fix collect config for mode git

parent f3a61fb7
No related branches found
No related tags found
No related merge requests found
---
# file: roles/drupal/tasks/config_collect/finish/git.yml
- name: Set facts
set_fact:
dummy: yes
- block:
- name: Push changes
shell: git push
args:
chdir: '{{ webRoot }}'
become: no
when: git_status.stdout != ''
- name: Delete webroot working copy
file:
path: '{{ webRoot }}'
state: absent
tags:
- deploy
---
# file: roles/drupal/tasks/config_collect/prepare/git.yml
- name: Set facts
set_fact:
dummy: yes
- block:
- name: Clone Git Repository
git:
accept_hostkey: yes
repo: '{{ drupal.src.git.repository }}'
dest: '{{ webRoot }}'
force: yes
version: '{{ drupal.src.git.branch|default(omit) }}'
become: no
- name: Create Git Hook for commit message
copy:
content: |
#!/bin/sh
echo "[ci skip]" >>$1
dest: '{{ webRoot }}/.git/hooks/prepare-commit-msg'
mode: 0777
tags:
- deploy
......@@ -3,22 +3,7 @@
- block:
- name: Clone Git Repository
git:
accept_hostkey: yes
repo: '{{ drupal.src.git.repository }}'
dest: '{{ webRoot }}'
force: yes
version: '{{ drupal.src.git.branch|default(omit) }}'
become: no
- name: Create Git Hook for commit message
copy:
content: |
#!/bin/sh
echo "[ci skip]" >>$1
dest: '{{ webRoot }}/.git/hooks/prepare-commit-msg'
mode: 0777
- include_tasks: git.yml
- name: Start Hotfix
shell: git {{ item }}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment