add csv-to-topo to geo-t-topo
We need to merge the csv data into the new topojson file!
This commit is contained in:
parent
4e2851fb1d
commit
12997c2eb4
9
.github/workflows/minify-map-json.yml
vendored
9
.github/workflows/minify-map-json.yml
vendored
|
@ -6,7 +6,7 @@ on:
|
|||
paths:
|
||||
- boundaries.geo.json
|
||||
jobs:
|
||||
mergeData:
|
||||
prepare:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
@ -14,6 +14,13 @@ jobs:
|
|||
fetch-depth: 0
|
||||
- name: Update TopoJSON boundaries
|
||||
run: ./.github/scripts/minify-map-json.sh
|
||||
merge:
|
||||
needs: prepare
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Merge CSV to TopoJSON
|
||||
run: |
|
||||
python3 ./.github/scripts/merge_csv_to_topojson.py
|
||||
- name: Create Pull Request
|
||||
uses: peter-evans/create-pull-request@v3
|
||||
with:
|
||||
|
|
Loading…
Reference in a new issue