-
Notifications
You must be signed in to change notification settings - Fork 3
32 lines (30 loc) · 1.11 KB
/
tindex_ndsm_nw.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: Update nDSM NW Tile Index
on:
schedule:
# run tile index creation every month
- cron: '0 1 9 * *'
jobs:
update-tindex-ndsm-nw:
runs-on: ubuntu-latest
env:
CI_COMMIT_MESSAGE: Update NW nDSM tile index
steps:
- uses: actions/checkout@v4
- name: Creation of tindex
run: |
sed -i "s+RUN python3 DOP/NW/openNRW_DOP_tindex.py+RUN grass -c epsg:25832 /grassdb/NW_nDSM --exec python3 nDSM/NW/openNRW_nDSM_tindex.py+g" docker/Dockerfile
docker build -f docker/Dockerfile -t test-tindex .
ID=$(docker create test-tindex)
echo $ID
docker cp $ID:/src/tile-indices/nDSM/NW/nrw_ndom_tindex_proj.gpkg.gz nDSM/NRW/
# Commit and push all changed files.
- name: Upload tindex
# Only run on main branch push (e.g. after pull request merge).
run: |
ID=$(docker create test-tindex)
echo ${ID}
git config user.name "$GITHUB_ACTOR"
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
git add nDSM/NRW/nrw_ndom_tindex_proj.gpkg.gz
git commit -m "${{ env.CI_COMMIT_MESSAGE }}"
git push