Skip to content

Commit

Permalink
Template again
Browse files Browse the repository at this point in the history
  • Loading branch information
dabreegster committed Dec 1, 2023
1 parent e121a46 commit eb30c85
Show file tree
Hide file tree
Showing 19 changed files with 3,989 additions and 1 deletion.
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/
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
*.swp
target/
node_modules/
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
# severance_snape
# canvas_geometry

Playing around with OSM, georust, and canvas
Loading

0 comments on commit eb30c85

Please sign in to comment.