Skip to content

Enhance export functionality with missing GeoJSON handling and UI upd… #5

Enhance export functionality with missing GeoJSON handling and UI upd…

Enhance export functionality with missing GeoJSON handling and UI upd… #5

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main # or 'master' if that's your default branch
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Create config.js
run: |
echo "// Google Maps API Configuration" > config.js
echo "// This file is auto-generated during deployment" >> config.js
echo "window.GOOGLE_MAPS_API_KEY = '${{ secrets.GOOGLE_MAPS_API_KEY }}';" >> config.js
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: '.'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4