Add support for postgres 13

This commit is contained in:
Dan Arnfield
2020-09-30 16:40:24 -05:00
parent 43c5f3ec6e
commit 3a3383fada
3 changed files with 10 additions and 4 deletions

View File

@ -49,3 +49,8 @@
set_fact:
matrix_postgres_detected_version_corresponding_docker_image: "{{ matrix_postgres_docker_image_v11 }}"
when: "matrix_postgres_detected_version == '11' or matrix_postgres_detected_version.startswith('11.')"
- name: Determine corresponding Docker image to detected version (use 12.x, if detected)
set_fact:
matrix_postgres_detected_version_corresponding_docker_image: "{{ matrix_postgres_docker_image_v12 }}"
when: "matrix_postgres_detected_version == '12' or matrix_postgres_detected_version.startswith('12.')"