Skip to content

feat: add new favicon (#51) #14

feat: add new favicon (#51)

feat: add new favicon (#51) #14

Workflow file for this run

name: Deploy
on:
push:
branches:
- master
jobs:
release:
name: Deploy to GitHub Pages
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18.16.0
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- name: Push to gh-pages
uses: crazy-max/[email protected]
with:
build_dir: public
keep_history: true
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}