docs #625
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: "📘 Deploy docs" | |
on: | |
workflow_dispatch: | |
workflow_call: | |
push: | |
branches: | |
- master | |
paths: | |
- "packages/docs/**" | |
- "CHANGELOG.md" | |
jobs: | |
deploy-docs: | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
env: | |
LEMONSQUEEZY_API_KEY: ${{ secrets.LEMONSQUEEZY_API_KEY }} | |
if: | | |
github.event_name == 'workflow_dispatch' || | |
github.event_name == 'workflow_call' || | |
(github.event_name == 'push' && github.ref == 'refs/heads/master') || | |
(github.event_name == 'workflow_run' && github.event.workflow_run.conclusion == 'success') | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
clean: false | |
ref: master | |
- name: Setup Bun | |
uses: oven-sh/setup-bun@v2 | |
- name: Install dependencies | |
run: bun i | |
- name: Add robots.txt if not main repo | |
if: github.repository != 'saadeghi/daisyui' | |
run: | | |
echo 'User-agent: * | |
Disallow: /' > packages/docs/static/robots.txt | |
- name: Build docs | |
run: bun run --bun build:docs | |
- name: Deploy docs to github pages | |
uses: peaceiris/actions-gh-pages@v4 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./packages/docs/build | |
cname: ${{ secrets.CNAME }} |