Skip to content

🔖 0.0.11

🔖 0.0.11 #18

Workflow file for this run

name: Build and Deploy
permissions:
contents: write
on:
push:
branches: ['main']
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [19.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Build JS
run: |
npm install
node ./scripts/compileJson.js
npm run build
- name: Deploy to GitHub Pages
uses: JamesIves/[email protected]
with:
folder: ./dist # The folder the action should deploy.