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 d20f821 commit e43c3ac
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/test_matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,16 @@ jobs:
with:
event: ${{ matrix.event }}

- name: Use Matrix in Another Step
run: |
echo "Component: ${{ matrix.component }}"
use-matrix:
needs: set-matrix
runs-on: ubuntu-latest
strategy:
matrix: ${{fromJson(needs.set-matrix.outputs.matrix)}}
steps:
- name: Use matrix
run: |
echo "Component: ${{ matrix }}"
echo "Paths: ${{ matrix.paths }}"
echo "Dockerfile: ${{ matrix.docker_file }}"
echo "Working Directory: ${{ matrix.working_dir }}"
echo "Image Name: ${{ matrix.image_name }}"
echo "Image Name: ${{ matrix.image_name }}"

0 comments on commit e43c3ac

Please sign in to comment.