File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -128,7 +128,7 @@ function build-pr() {
128
128
export REGISTRY=" ${NPD_STAGING_REGISTRY} /pr/${PR} "
129
129
export VERSION=$( get-version)
130
130
export TAG=" ${VERSION} "
131
- make push
131
+ make push-tar
132
132
write-env-file ${PR_ENV_FILENAME}
133
133
}
134
134
@@ -138,7 +138,10 @@ function build-ci() {
138
138
export REGISTRY=" ${NPD_STAGING_REGISTRY} /ci"
139
139
export VERSION=" $( get-version) -$( date +%Y%m%d.%H%M) "
140
140
export TAG=" ${VERSION} "
141
- make push
141
+ # e2e tests consume the tarball, not the container
142
+ # this is simpler to manage in the infra, and we still ensure the container
143
+ # build works locally
144
+ make push-tar build-container
142
145
143
146
# Create the env file with and without custom flags at the same time.
144
147
build-npd-custom-flags
You can’t perform that action at this time.
0 commit comments