From cac6af41bb045c1b0c7c7102d8f3fe28162ef000 Mon Sep 17 00:00:00 2001 From: Laurent Indermuehle Date: Thu, 5 Jan 2023 19:19:18 +0100 Subject: [PATCH] Fix volume path using github.workspace var --- .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 cfa8905..cbceca2 100644 --- a/.github/workflows/ansible-test-plugins.yml +++ b/.github/workflows/ansible-test-plugins.yml @@ -99,7 +99,7 @@ jobs: ports: - 3308:3306 volumes: - - $(pwd)/tests/integration/setup_mysql/replica1/:/etc/mysql/conf.d/ + - ${{ github.workspace }}/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: - - $(pwd)/tests/integration/setup_mysql/replica2/:/etc/mysql/conf.d/ + - ${{ github.workspace }}/tests/integration/setup_mysql/replica2/:/etc/mysql/conf.d/ steps: - name: 'Wait 20s for the service containers to be healthy'