소스 검색

Fix self-building for Postmoogle

Before this, it was trying to pull the `latest` git branch.

Related to https://github.com/spantaleev/matrix-docker-ansible-deploy/pull/2043
pull/2046/head
Slavi Pantaleev 3 년 전
부모
커밋
5e08e94637
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      roles/matrix-bot-postmoogle/defaults/main.yml

+ 1
- 1
roles/matrix-bot-postmoogle/defaults/main.yml 파일 보기

@@ -6,7 +6,7 @@ matrix_bot_postmoogle_enabled: true

matrix_bot_postmoogle_container_image_self_build: false
matrix_bot_postmoogle_docker_repo: "https://gitlab.com/etke.cc/postmoogle.git"
matrix_bot_postmoogle_docker_repo_version: "{{ matrix_bot_postmoogle_version }}"
matrix_bot_postmoogle_docker_repo_version: "{{ 'main' if matrix_bot_postmoogle_version == 'latest' else matrix_bot_postmoogle_version }}"
matrix_bot_postmoogle_docker_src_files_path: "{{ matrix_base_data_path }}/postmoogle/docker-src"

matrix_bot_postmoogle_version: latest


불러오는 중...
취소
저장