fix correct number of pubs #105
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |