@@ -121,22 +121,25 @@ jobs:
121
121
- name : Pull AMD image
122
122
run : |
123
123
docker pull $DOCKER_BUILD_REPOSITORY:amd64-$SHORT_SHA
124
- - name : Pull ARM image
125
- run : |
126
- docker pull $DOCKER_BUILD_REPOSITORY:arm64-$SHORT_SHA
124
+ # - name: Pull ARM image
125
+ # run: |
126
+ # docker pull $DOCKER_BUILD_REPOSITORY:arm64-$SHORT_SHA
127
127
- name : Push AMD and ARM tags
128
128
run : |
129
129
# these are used to construct the final manifest but also cache-from in subsequent runs
130
130
docker tag $DOCKER_BUILD_REPOSITORY:amd64-$SHORT_SHA $DOCKER_BUILD_REPOSITORY:amd64
131
131
docker push $DOCKER_BUILD_REPOSITORY:amd64
132
- docker tag $DOCKER_BUILD_REPOSITORY:arm64-$SHORT_SHA $DOCKER_BUILD_REPOSITORY:arm64
133
- docker push $DOCKER_BUILD_REPOSITORY:arm64
132
+ # docker tag $DOCKER_BUILD_REPOSITORY:arm64-$SHORT_SHA $DOCKER_BUILD_REPOSITORY:arm64
133
+ # docker push $DOCKER_BUILD_REPOSITORY:arm64
134
134
- name : Push multiarch manifest
135
135
run : |
136
- docker manifest create ${DOCKER_REPOSITORY}:latest $DOCKER_BUILD_REPOSITORY:amd64 $DOCKER_BUILD_REPOSITORY:arm64
136
+ #docker manifest create ${DOCKER_REPOSITORY}:latest $DOCKER_BUILD_REPOSITORY:amd64 $DOCKER_BUILD_REPOSITORY:arm64
137
+ docker manifest create ${DOCKER_REPOSITORY}:latest $DOCKER_BUILD_REPOSITORY:amd64
137
138
docker manifest push $DOCKER_REPOSITORY:latest
138
- docker manifest create ${DOCKER_REPOSITORY}:$SHORT_SHA $DOCKER_BUILD_REPOSITORY:amd64 $DOCKER_BUILD_REPOSITORY:arm64
139
+ #docker manifest create ${DOCKER_REPOSITORY}:$SHORT_SHA $DOCKER_BUILD_REPOSITORY:amd64 $DOCKER_BUILD_REPOSITORY:arm64
140
+ docker manifest create ${DOCKER_REPOSITORY}:$SHORT_SHA $DOCKER_BUILD_REPOSITORY:amd64
139
141
docker manifest push $DOCKER_REPOSITORY:$SHORT_SHA
140
142
VERSION=$(grep -m1 version preprocessing-pipeline-family.yaml | cut -d ' ' -f2)
141
- docker manifest create ${DOCKER_REPOSITORY}:$VERSION $DOCKER_BUILD_REPOSITORY:amd64 $DOCKER_BUILD_REPOSITORY:arm64
143
+ #docker manifest create ${DOCKER_REPOSITORY}:$VERSION $DOCKER_BUILD_REPOSITORY:amd64 $DOCKER_BUILD_REPOSITORY:arm64
144
+ docker manifest create ${DOCKER_REPOSITORY}:$VERSION $DOCKER_BUILD_REPOSITORY:amd64
142
145
docker manifest push ${DOCKER_REPOSITORY}:$VERSION
0 commit comments