From 1583f5c3c2af48b5fcd2670b6c4b31228331b197 Mon Sep 17 00:00:00 2001 From: tylertitsworth Date: Tue, 9 Jul 2024 13:46:03 -0700 Subject: [PATCH] additional bugfix Signed-off-by: tylertitsworth --- .github/workflows/reuse-container-ci.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/reuse-container-ci.yaml b/.github/workflows/reuse-container-ci.yaml index b59d63468..9a11c6817 100644 --- a/.github/workflows/reuse-container-ci.yaml +++ b/.github/workflows/reuse-container-ci.yaml @@ -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: @@ -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) }}