fix: use CSS variable for tooltip z-index instead of hardcoded value … #101
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 }} |