Skip to content

Commit

Permalink
Copy over a template from severance_snape. Get OSM parsed and displayed
Browse files Browse the repository at this point in the history
from various sources.

(Still lots that should be moved to common libs somewhere)
  • Loading branch information
dabreegster committed Dec 18, 2023
1 parent 1065658 commit 4c35926
Show file tree
Hide file tree
Showing 23 changed files with 5,049 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/web.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Deploy web

on:
push:
branches: [main]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Install node
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: 'npm'
cache-dependency-path: web/package-lock.json

- name: Install wasm-pack
uses: jetli/[email protected]

- name: Cache WASM build
uses: actions/cache@v3
with:
path: target
key: doesnt-matter-share-everything

- name: Build web app
run: |
cd web
npm ci
npm run wasm
npm run build --if-present
- name: Publish
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./web/dist/
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
*.swp
target/
node_modules/
# Local symlink to avoid hitting od2net.org
web/public
Loading

0 comments on commit 4c35926

Please sign in to comment.