Explorar el Código

make selfbuild be forced on (and only) git master change

pull/440/head
Horvath Gergely hace 6 años
padre
commit
17e7bae2cc
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  1. +3
    -1
      roles/matrix-bridge-mautrix-hangouts/tasks/setup_install.yml

+ 3
- 1
roles/matrix-bridge-mautrix-hangouts/tasks/setup_install.yml Ver fichero

@@ -35,17 +35,19 @@
repo: https://github.com/tulir/mautrix-hangouts.git
dest: "{{ matrix_mautrix_hangouts_docker_src_files_path }}"
force: "yes"
register: matrix_mautrix_hangouts_git_pull_results
when: "matrix_mautrix_hangouts_enabled|bool and matrix_mautrix_hangouts_container_image_self_build"

- name: Ensure Mautrix Hangouts Docker image is built
docker_image:
name: "{{ matrix_mautrix_hangouts_docker_image }}"
source: build
force_source: yes
build:
dockerfile: Dockerfile
path: "{{ matrix_mautrix_hangouts_docker_src_files_path }}"
pull: yes
when: "matrix_mautrix_hangouts_enabled|bool and matrix_mautrix_hangouts_container_image_self_build"
when: "matrix_mautrix_hangouts_enabled|bool and matrix_mautrix_hangouts_container_image_self_build and matrix_mautrix_hangouts_git_pull_results.changed"

- name: Check if an old database file already exists
stat:


Cargando…
Cancelar
Guardar