Merge branch 'mwgg:master' into master #53
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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" |