Skip to content

fix correct number of pubs #105

fix correct number of pubs

fix correct number of pubs #105

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- master
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout πŸ›ŽοΈ
uses: actions/checkout@v3
- name: Set up Node.js πŸ§‘β€πŸ’»
uses: actions/setup-node@v3
with:
node-version: '20.17'
- name: Install dependencies πŸ”§
run: npm install
- name: Build project πŸ—οΈ
run: npm run build -- --output-path=dist/ --base-href=/
- name: Deploy to GitHub Pages πŸš€
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist/browser