Skip to content

Commit

Permalink
Try using vars context to access MATRIX_DIR in jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
datalogics-saharay committed Apr 18, 2024
1 parent b1403ba commit bcc5a78
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:
strategy:
fail-fast: false
matrix:
dir: ${{ fromJSON(env.MATRIX_DIR) }}
dir: ${{ fromJSON(vars.MATRIX_DIR) }}
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -164,7 +164,7 @@ jobs:
strategy:
fail-fast: false
matrix:
dir: ${{ fromJSON(env.MATRIX_DIR) }}
dir: ${{ fromJSON(vars.MATRIX_DIR) }}
needs: [run-samples-windows]
steps:
- name: Checkout
Expand Down Expand Up @@ -234,7 +234,7 @@ jobs:
runs-on: macos-14
strategy:
matrix:
dir: ${{ fromJSON(env.MATRIX_DIR) }}
dir: ${{ fromJSON(vars.MATRIX_DIR) }}
needs: [run-samples-ubuntu]
steps:
- name: Checkout
Expand Down

0 comments on commit bcc5a78

Please sign in to comment.