Skip to content

Commit 83a41ec

Browse files
committed
Split publish script into normal vs build publishes
1 parent c9c9a44 commit 83a41ec

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

base/publish-all.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,15 @@
33
RUNTIMES="nodejs4.3 nodejs6.10 nodejs8.10 python2.7 python3.6 java8 go1.x dotnetcore2.0 dotnetcore2.1"
44

55
docker push lambci/lambda-base
6-
docker push lambci/lambda-base:build
76

87
for RUNTIME in $RUNTIMES; do
98
echo $RUNTIME
109
docker push lambci/lambda:${RUNTIME}
10+
done
11+
12+
docker push lambci/lambda-base:build
13+
14+
for RUNTIME in $RUNTIMES; do
15+
echo build-${RUNTIME}
1116
docker push lambci/lambda:build-${RUNTIME}
1217
done

0 commit comments

Comments
 (0)