File tree 1 file changed +3
-3
lines changed 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 34
34
# publish docker images
35
35
mkdir -p ~/.ssh
36
36
ssh-keyscan github.com >> ~/.ssh/known_hosts
37
- # git tag -d ${VERSION}
37
+ git tag -d ${VERSION}
38
38
git tag ${VERSION}
39
39
git push origin ${VERSION}
40
40
docker login -u $DOCKER_USER -p $DOCKER_PASS
@@ -51,11 +51,11 @@ jobs:
51
51
for region in us-east-1 us-west-2 eu-central-1
52
52
do
53
53
LVERSION="$(aws lambda publish-layer-version --region ${region} \
54
- --layer-name geolambda-dev --license-info 'MIT' \
54
+ --layer-name geolambda --license-info 'MIT' \
55
55
--description 'Native geospatial libaries for all runtimes' \
56
56
--zip-file fileb://lambda-deploy.zip | jq '.Version')"
57
57
aws lambda add-layer-version-permission --region ${region} \
58
- --layer-name geolambda-dev --action lambda:GetLayerVersion \
58
+ --layer-name geolambda --action lambda:GetLayerVersion \
59
59
--statement-id public --version-number ${LVERSION} --principal '*'
60
60
done
61
61
You can’t perform that action at this time.
0 commit comments