Skip to content

Bump version to 1.10 #24

Bump version to 1.10

Bump version to 1.10 #24

name: Build and Deploy Kerific
on:
push:
branches:
- main # Set this to the branch you want to deploy from
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: '21' # Set this to the node version you use
- name: Install Dependencies
run: npm install
- name: Build
run: npm run build
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@4.1.4
with:
branch: gh-pages # The branch the action should deploy to.
folder: dist # The folder the action should deploy.