Skip to content

Commit

Permalink
Update ci-pipeline.yml: chkenv
Browse files Browse the repository at this point in the history
  • Loading branch information
AndyBRoswell authored Aug 28, 2024
1 parent 5a85210 commit 7a6faf3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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
Expand All @@ -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()
Expand Down

0 comments on commit 7a6faf3

Please sign in to comment.