✨ feat(search): hide "clear search" icon if input is empty (#388) #7
This file contains 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
name: Build Site | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
check_and_build_pr: | |
name: Check and Build for Pull Requests | |
runs-on: ubuntu-latest | |
if: github.event_name == 'pull_request' | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Zola Build | |
uses: shalzz/zola-deploy-action@v0.19.2 | |
env: | |
BUILD_ONLY: true | |
- name: Zola Check | |
uses: shalzz/zola-deploy-action@v0.19.2 | |
env: | |
BUILD_ONLY: true | |
CHECK_LINKS: true | |
build_and_deploy: | |
name: Build and Deploy on Main Push | |
runs-on: ubuntu-22.04 | |
if: github.event_name == 'push' && github.ref == 'refs/heads/main' | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Build and Deploy | |
uses: shalzz/zola-deploy-action@v0.19.2 | |
env: | |
PAGES_BRANCH: gh-pages | |
TOKEN: ${{ secrets.TOKEN }} | |
BUILD_THEMES: false |