Skip to content

Update package-lock.json #96

Update package-lock.json

Update package-lock.json #96

Workflow file for this run

name: github pages
on: [push, pull_request]
jobs:
deploy:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: 18
- name: install
run: npm install
- name: build
run: npm run build
- name: copy - 404.html
run: cp dist/index.html dist/404.html
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: github.ref == 'refs/heads/master'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist
cname: submit.vtbs.moe
force_orphan: true
user_name: 'nanashi'
user_email: '[email protected]'