Skip to content

license and readme update #13

license and readme update

license and readme update #13

Workflow file for this run

name: GitHub Pages
on:
push:
branches:
- post-jam
pull_request:
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '22'
- run: npm install
- run: npm run build
- name: Deploy
uses: peaceiris/actions-gh-pages@v4
if: github.ref == 'refs/heads/post-jam'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist