Skip to content

creating public dir #22

creating public dir

creating public dir #22

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js Current
uses: actions/setup-node@v3
with:
node-version: current
- name: Install Dependencies
run: |
npm ci
npm run build
- name: Deploy
uses: peaceiris/[email protected]
with:
publish_branch: gh-pages
publish_dir: ./public
github_token: ${{ secrets.GITHUB_TOKEN }}