fix: code block caption background color #116
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 to Pages | |
on: | |
push: | |
branches: | |
- master | |
workflow_dispatch: | |
permissions: | |
contents: read | |
deployments: write | |
# Allow one concurrent deployment | |
concurrency: | |
group: "pages" | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: build docs | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- run: npm ci | |
working-directory: static | |
- run: npm run build | |
working-directory: static | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
- name: Setup Pages | |
uses: actions/configure-pages@v3 | |
- name: Install deps | |
run: python -m pip install -r requirements.txt | |
- name: Install theme | |
run: python -m pip install . | |
- name: Build docs | |
run: sphinx-build docs _site -b dirhtml | |
- name: Upload artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: pages | |
path: _site | |
deploy: | |
environment: | |
name: cloudflare-pages | |
url: ${{ steps.deployment.outputs.url }} | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: Download artifact | |
uses: actions/download-artifact@v3 | |
with: | |
name: pages | |
- name: Deploy to Cloudflare Pages | |
id: deployment | |
uses: cloudflare/[email protected] | |
with: | |
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} | |
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} | |
projectName: shibuya-doc | |
directory: . |