Skip to content

Commit 763b52f

Browse files
committed
fix
Signed-off-by: oliver könig <okoenig@nvidia.com>
1 parent 417b1fc commit 763b52f

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/actions/build-container/action.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ inputs:
2424
repo-name:
2525
description: "The name of the repo to build container"
2626
required: true
27+
registry:
28+
description: "The registry to build container"
29+
required: true
2730

2831
runs:
2932
using: "composite"
@@ -61,7 +64,7 @@ runs:
6164
id: cache_from
6265
env:
6366
GH_TOKEN: ${{ github.token }}
64-
REGISTRY: ${{ vars.ECR }}
67+
REGISTRY: ${{ inputs.registry }}
6568
run: |
6669
LAST_PRS=$(gh api graphql \
6770
-F owner="NVIDIA-NeMo" \

.github/workflows/cicd-main.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,7 @@ jobs:
155155
dockerfile-path: "./docker/Dockerfile"
156156
PAT: ${{ secrets.PAT }}
157157
repo-name: "Automodel"
158+
registry: ${{ vars.ECR }}
158159

159160
cicd-unit-tests:
160161
strategy:

0 commit comments

Comments
 (0)