Skip to content

Commit 96929b2

Browse files
author
Alexander Batashev
authored
[CI] Fix typo in workflow file (#5489)
Due to a typo in `build_container/action.yml` jobs were passing an empty list of arguments to Docker. Fix that typo, and pass correct arguments to the Docker build command.
1 parent b2663d8 commit 96929b2

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/sycl_containers.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -89,11 +89,11 @@ jobs:
8989
ghcr.io/${{ github.repository }}/ubuntu2004_intel_drivers:latest-${{ github.sha }}
9090
ghcr.io/${{ github.repository }}/ubuntu2004_intel_drivers:latest
9191
build-args: |
92-
compute_runtime_tag=${{fromJson(steps.deps.outputs.deps).linux.compute_runtime.tag}}
93-
igc_tag=${{fromJson(steps.deps.outputs.deps).linux.igc.tag}}
94-
tbb_tag=${{fromJson(steps.deps.outputs.deps).linux.tbb.tag}}
95-
fpgaemu_tag=${{fromJson(steps.deps.outputs.deps).linux.fpgaemu.tag}}
96-
cpu_tag=${{fromJson(steps.deps.outputs.deps).linux.oclcpu.tag}}
92+
compute_runtime_tag=${{fromJson(steps.deps.outputs.deps).linux.compute_runtime.github_tag}}
93+
igc_tag=${{fromJson(steps.deps.outputs.deps).linux.igc.github_tag}}
94+
tbb_tag=${{fromJson(steps.deps.outputs.deps).linux.tbb.github_tag}}
95+
fpgaemu_tag=${{fromJson(steps.deps.outputs.deps).linux.fpgaemu.github_tag}}
96+
cpu_tag=${{fromJson(steps.deps.outputs.deps).linux.oclcpu.github_tag}}
9797
9898
# This job produces a Docker container with the latest versions of Intel
9999
# drivers, that can be found on GitHub.

devops/actions/build_container/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ runs:
3636
with:
3737
push: ${{ inputs.push }}
3838
tags: ${{ inputs.tags }}
39-
build-args: ${{ inputs.build_args }}
39+
build-args: ${{ inputs.build-args }}
4040
context: ${{ github.workspace }}/devops
4141
file: ${{ github.workspace }}/devops/containers/${{ inputs.file }}.Dockerfile
4242

0 commit comments

Comments
 (0)