Skip to content

Update package.json

Update package.json #2

Workflow file for this run

name: publish
on:
push:
branches: [master]
workflow_dispatch:
jobs:
gh-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16.x'
- name: Install Dependencies
run: npm i
- name: Build Project
run: npm run build
- name: Prepare Project
run: touch dist/.nojekyll
- name: Deploy
uses: JamesIves/github-pages-deploy-action@4.1.5
with:
branch: gh-pages
folder: dist