Skip to content

Commit

Permalink
chore: more debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
devops-chris committed Dec 28, 2023
1 parent 097acaa commit 972f1d9
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions .github/workflows/test_matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,14 @@ jobs:
steps:
- name: Use matrix
run: |
matrix="${{ needs.set-matrix.outputs.matrix }}"
components=$(echo "$matrix" | jq -r '.components | join(",")')
paths=$(echo "$matrix" | jq -r '.paths | join(",")')
docker_files=$(echo "$matrix" | jq -r '.docker_files | join(",")')
working_dirs=$(echo "$matrix" | jq -r '.working_dirs | join(",")')
image_names=$(echo "$matrix" | jq -r '.image_names | join(",")')
matrix="${{ matrix }}"
paths="${{ matrix.paths }}"
docker_files="${{ matrix.docker_files }}"
working_dirs="${{ matrix.working_dirs }}"
image_names="${{ matrix.image_names }}"
echo "Component: $components"
echo "Component: $matrix"
echo "Paths: $paths"
echo "Dockerfile: $docker_files"
echo "Working Directory: $working_dirs"
echo "Image Name: $image_names"
echo "Image Name: $image_names"

0 comments on commit 972f1d9

Please sign in to comment.