Skip to content

fix: use CSS variable for tooltip z-index instead of hardcoded value … #101

fix: use CSS variable for tooltip z-index instead of hardcoded value …

fix: use CSS variable for tooltip z-index instead of hardcoded value … #101

on:
workflow_dispatch:
push:
branches:
- master
name: Build and deploy GH Pages
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: setup node
uses: actions/setup-node@v6
with:
node-version: '24'
- name: install esbuild
run: npm install -g esbuild
- name: build assets
run: make dist
- name: build_and_deploy
uses: shalzz/zola-deploy-action@v0.22.1
env:
# Build docs site from ./docs
BUILD_DIR: docs
# Target branch
PAGES_BRANCH: gh-pages
# Or if publishing to the same repo, use the automatic token
TOKEN: ${{ secrets.GITHUB_TOKEN }}