From 9c1b13c7f938de46ce4bc49ff7f636fb89b97cb4 Mon Sep 17 00:00:00 2001 From: Laurent Indermuehle Date: Thu, 5 Jan 2023 19:17:25 +0100 Subject: [PATCH] Fix volume path using $(pwd) --- .github/workflows/ansible-test-plugins.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ansible-test-plugins.yml b/.github/workflows/ansible-test-plugins.yml index 8371961..cfa8905 100644 --- a/.github/workflows/ansible-test-plugins.yml +++ b/.github/workflows/ansible-test-plugins.yml @@ -99,7 +99,7 @@ jobs: ports: - 3308:3306 volumes: - - ./tests/integration/setup_mysql/replica1/:/etc/mysql/conf.d/ + - $(pwd)/tests/integration/setup_mysql/replica1/:/etc/mysql/conf.d/ db_replica2: image: ${{ matrix.db_engine_version }} @@ -109,7 +109,7 @@ jobs: ports: - 3309:3306 volumes: - - ./tests/integration/setup_mysql/replica2/:/etc/mysql/conf.d/ + - $(pwd)/tests/integration/setup_mysql/replica2/:/etc/mysql/conf.d/ steps: - name: 'Wait 20s for the service containers to be healthy'