Skip to content

Commit 7c4c349

Browse files
committed
ci: debug statements
1 parent aa9e782 commit 7c4c349

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.circleci/config.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,18 @@ jobs:
3838
docker push developmentseed/geolambda:${VERSION}
3939
# deploy public Lambda layers
4040
pip install awscli
41+
echo ${PWD}
4142
docker run --rm -v $PWD:/home/geolambda --entrypoint package.sh -it developmentseed/geolambda:${VERSION}
43+
echo ${PWD}
4244
for region in [us-east-1, us-west-2, eu-central-1]
4345
do
46+
echo ${region}
4447
aws lambda publish-layer-version --region ${region} \
45-
--layer-name geolambda-test --license-info "MIT" \
48+
--layer-name geolambda-dev --license-info "MIT" \
4649
--description "Native geospatial libaries for all runtimes" \
4750
--zip-file fileb://lambda-deploy.zip
4851
aws lambda add-layer-version-permission --region ${region} \
49-
--layer-name geolambda-test --action lambda:GetLayerVersion \
52+
--layer-name geolambda-dev --action lambda:GetLayerVersion \
5053
--statement-id public --version-number 1 --principal '*'
5154
done
5255

0 commit comments

Comments
 (0)