Skip to content

Commit

Permalink
ci: print docker image used for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
rabi-siddique committed Sep 16, 2024
1 parent ea8b5f5 commit 3756f91
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/reusable-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,14 @@ jobs:
with:
project_id: 'simulationlab'
workload_identity_provider: 'projects/60745596728/locations/global/workloadIdentityPools/github/providers/dapp-inter'

- name: Docker Image Used For E2E Testing
run: |
if [ -z "${{ inputs.docker_image }}" ]; then
echo "Error: Docker image not provided."
exit 1
else
echo "Docker Image: ${{ inputs.docker_image }}"
fi
- name: Run e2e tests
run: ${{ inputs.docker_compose_command }}
env:
Expand Down

0 comments on commit 3756f91

Please sign in to comment.