From 7a6faf3b1737c5429d75aff19ce7e0d17a486fe7 Mon Sep 17 00:00:00 2001 From: Andy Bayer Roswell <46857536+AndyBRoswell@users.noreply.github.com> Date: Thu, 29 Aug 2024 01:49:57 +0200 Subject: [PATCH] Update ci-pipeline.yml: chkenv --- .github/workflows/ci-pipeline.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-pipeline.yml b/.github/workflows/ci-pipeline.yml index 965ab3c..0ef8173 100644 --- a/.github/workflows/ci-pipeline.yml +++ b/.github/workflows/ci-pipeline.yml @@ -36,7 +36,7 @@ jobs: - uses: actions/checkout@v4 - name: chkenv - run: python -c "import os; print(os.getenv('CELL_GITHUB'))" + run: python -c "import os; print(os.getenv('CELL_GITHUB')); print(os.getenv('BASE_PATH'))" - name: Build docker run: | @@ -51,7 +51,7 @@ jobs: compose-file: "${{ inputs.docker_folder }}/docker-compose.yaml" - name: chkenv2 - run: python -c "import os; print(os.getenv('CELL_GITHUB'))" + run: python -c "import os; print(os.getenv('CELL_GITHUB')); print(os.getenv('BASE_PATH'))" - name: Wait for healthy app uses: raschmitt/wait-for-healthy-container/@v1 @@ -61,7 +61,7 @@ jobs: - name: chkenv3 if: always() - run: python -c "import os; print(os.getenv('CELL_GITHUB'))" + run: python -c "import os; print(os.getenv('CELL_GITHUB')); print(os.getenv('BASE_PATH'))" - name: Capture Docker Logs if: failure()