Skip to content

v1.0.6

v1.0.6 #55

# This workflow will do a clean install of dependencies and create a new GeoJSON file.
name: Create GeoJSON File
on: [push, pull_request]
jobs:
create_geojson:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: "17.x"
registry-url: "https://npm.pkg.github.com"
- run: npm run geojson
- name: Commit changes
uses: EndBug/add-and-commit@v7
with:
default_author: github_actions
message: "Automatically Updated GeoJSON File"
add: "*.geojson --force"