Skip to content

Added search button to direct search from meta preview #66

Added search button to direct search from meta preview

Added search button to direct search from meta preview #66

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- development
workflow_dispatch:
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install dependencies
run: npm install
# Build your project. This step mirrors what the Dockerfile does for building: `npm run build`.
# Make sure "npm run build" produces a `build` directory with static assets.
- name: Build
run: npm run build
# Deploy the generated build directory to gh-pages branch.
# This uses the actions/gh-pages action to push your `build` folder to `gh-pages` branch.
- name: Deploy
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./build