Skip to content

Commit

Permalink
Added basic geojson compilation
Browse files Browse the repository at this point in the history
Update geojson-release.yml
  • Loading branch information
aziascreations committed Nov 12, 2023
1 parent 925c596 commit 7f4a753
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/geojson-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Make & release GeoJSON

on:
push:

jobs:
do-tests:
runs-on: ubuntu-latest
permissions:
contents: read
concurrency:
group: cicd-tests
steps:
- name: Checkout Git submodules
uses: actions/checkout@v4
with:
submodules: true

- name: Setup Python 3.10
uses: actions/setup-python@v4
with:
python-version: '3.10'

- name: Run "make_geojson.py"
run: python my_script.py

- name: Test if if worked
run: ls -la output/

0 comments on commit 7f4a753

Please sign in to comment.