Skip to content

Commit a664613

Browse files
committed
done
1 parent 91753f5 commit a664613

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,17 +72,17 @@ jobs:
7272
sh -c "cd /local/tests && sh tests.sh"
7373
7474
- name: Push to DockerHub
75-
if: contains(github.ref, 'tags')
75+
if: github.ref == 'refs/heads/master'
7676
run: docker push lambgeo/lambda${{ steps.amazonlinux.outputs.version }}-gdal:${{ matrix.gdal-version }}
7777

7878
- name: Build Runtime and Push to DockerHub
79-
# if: contains(github.ref, 'tags')
79+
if: github.ref == 'refs/heads/master'
8080
run: |
8181
runtimes=$(if [ '${{ steps.amazonlinux.outputs.version }}' == '2' ]; then echo 'python3.8'; else echo 'python3.7'; fi)
8282
for runtime in ${runtimes}; do
8383
docker build \
8484
--build-arg GDAL_VERSION=${{ matrix.gdal-version }} \
8585
-f runtimes/${runtime} \
8686
-t lambgeo/lambda-gdal:${{ matrix.gdal-version }}-${runtime} .
87+
docker push lambgeo/lambda-gdal:${{ matrix.gdal-version }}-${runtime}
8788
done
88-
# docker push lambgeo/lambda-gdal:${{ matrix.gdal-version }}-${runtime}

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
# STATUS: WIP
2-
3-
This project is currently in a Work In Progress status. We are doing a global refactor.
4-
For the stable version of the docs please refer to https://github.com/lambgeo/docker-lambda/tree/ef66339724b1b7e1a375df912dfd58a9c59ac109
51

62
# GDAL based docker image made for AWS Lambda
73

@@ -118,3 +114,8 @@ For Rasterio or other libraries to be aware of GDAL/PROJ C libraries, you need t
118114
### Other variable
119115

120116
Starting with gdal3.1 (PROJ 7.1), you can set `PROJ_NETWORK=ON` to use remote grids: https://proj.org/usage/network.html
117+
118+
119+
### Refactor
120+
121+
We recently refactored the repo, to see old documentation please refer to https://github.com/lambgeo/docker-lambda/tree/ef66339724b1b7e1a375df912dfd58a9c59ac109

scripts/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ docker build \
1919
docker build \
2020
--build-arg GDAL_VERSION=${GDAL_VERSION} \
2121
-f runtimes/${RUNTIME} \
22-
-t lambgeo/lambda${LAMBDA_VERSION}-gdal:${GDAL_VERSION}-${RUNTIME} .
22+
-t lambgeo/lambda-gdal:${GDAL_VERSION}-${RUNTIME} .

0 commit comments

Comments
 (0)