Skip to content

Merge pull request #18 from Trinoooo/fix/ragdoll_wal #22

Merge pull request #18 from Trinoooo/fix/ragdoll_wal

Merge pull request #18 from Trinoooo/fix/ragdoll_wal #22

Workflow file for this run

name: Page
on:
push:
branches:
- main # default branch
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
working-directory: ./doc/
steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
submodules: recursive
- name: Use Node.js 21.5
uses: actions/setup-node@v2
with:
node-version: '21'
- name: Install Dependencies
run: npm install
- name: Build
run: npm run build
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v2
with:
path: ./doc/public
deploy:
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2