Skip to content

Commit

Permalink
additional bugfix
Browse files Browse the repository at this point in the history
Signed-off-by: tylertitsworth <[email protected]>
  • Loading branch information
tylertitsworth committed Jul 9, 2024
1 parent 7ae9df9 commit 1583f5c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/reuse-container-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,9 @@ jobs:
username: ${{ secrets.REGISTRY_USER }}
password: ${{ secrets.REGISTRY_TOKEN }}
- name: Pull Image
run: docker pull ${{ secrets.REGISTRY }}/${{ inputs.group_dir }}:${{ matrix.container }}
run: docker pull ${{ secrets.REGISTRY }}/${GROUP_DIR,,}:${{ matrix.container }}
env:
GROUP_DIR: ${{ inputs.group_dir }}
- name: Scan Container
uses: intel/ai-containers/.github/scan@main
with:
Expand Down Expand Up @@ -179,7 +181,7 @@ jobs:
test-containers:
needs: [setup-build, setup-test]
if: ${{ needs.setup-test.outputs.matrix != '[]' }}
runs-on: fromJson(needs.setup-build.outputs.matrix).runner_label }}
runs-on: ${{ fromJson(needs.setup-build.outputs.matrix).runner_label }}
strategy:
matrix:
tests: ${{ fromJson(needs.setup-test.outputs.matrix) }}
Expand Down

0 comments on commit 1583f5c

Please sign in to comment.