We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 417b1fc commit 763b52fCopy full SHA for 763b52f
.github/actions/build-container/action.yml
@@ -24,6 +24,9 @@ inputs:
24
repo-name:
25
description: "The name of the repo to build container"
26
required: true
27
+ registry:
28
+ description: "The registry to build container"
29
+ required: true
30
31
runs:
32
using: "composite"
@@ -61,7 +64,7 @@ runs:
61
64
id: cache_from
62
65
env:
63
66
GH_TOKEN: ${{ github.token }}
- REGISTRY: ${{ vars.ECR }}
67
+ REGISTRY: ${{ inputs.registry }}
68
run: |
69
LAST_PRS=$(gh api graphql \
70
-F owner="NVIDIA-NeMo" \
.github/workflows/cicd-main.yml
@@ -155,6 +155,7 @@ jobs:
155
dockerfile-path: "./docker/Dockerfile"
156
PAT: ${{ secrets.PAT }}
157
repo-name: "Automodel"
158
+ registry: ${{ vars.ECR }}
159
160
cicd-unit-tests:
161
strategy:
0 commit comments