-
Notifications
You must be signed in to change notification settings - Fork 3
36 lines (34 loc) · 1.08 KB
/
tindex_dop_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
33
34
35
36
name: Update DOP NW Tile Index
on:
push:
branches:
- main
schedule:
# run tile index creation every month (Min HH DD Month DayOfWeek)
- cron: '0 15 08 * *'
jobs:
update-tindex-dop-nw:
runs-on: ubuntu-latest
env:
CI_COMMIT_MESSAGE: Update NW DOP tile index
steps:
- uses: actions/checkout@v4
- name: Creation of tindex
run: |
docker build -f docker/Dockerfile -t test-tindex .
ID=$(docker create test-tindex)
echo $ID
docker cp $ID:/src/tile-indices/DOP/NW/openNRW_DOP10_tileindex.gpkg.gz DOP/NW/
# 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 config pull.rebase false
git add DOP/NW/openNRW_DOP10_tileindex.gpkg.gz
git commit -m "${{ env.CI_COMMIT_MESSAGE }}"
git pull origin main
git push