Skip to content

Fix side-wall particle climbing in SPH collision response #30

Fix side-wall particle climbing in SPH collision response

Fix side-wall particle climbing in SPH collision response #30

name: Build static page
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci
- name: Type check
run: npm run lint
- name: Build app
run: npm run build
- name: Prepare release artifact
run: |
rm -rf release
mkdir -p release
cp -R dist release/dist
cp serve_dist.py release/serve_dist.py
- name: Upload dist artifact
uses: actions/upload-artifact@v4
with:
name: static-page
path: release
if-no-files-found: error