fix color of cursor in editor when using dark mode #530
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 website to GitHub Pages | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
cache: "pip" | |
cache-dependency-path: "constraints*.txt" | |
- run: python -m pip install -c constraints.txt tox tox-uv | |
- run: tox -e docs | |
- if: github.repository == 'beancount/fava' | |
uses: actions/configure-pages@v4 | |
- uses: actions/upload-pages-artifact@v3 | |
with: | |
path: "build/docs" | |
deploy: | |
if: github.repository == 'beancount/fava' && github.event_name == 'push' | |
needs: "build" | |
permissions: | |
pages: write | |
id-token: write | |
concurrency: | |
group: "pages" | |
cancel-in-progress: false | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: "ubuntu-latest" | |
steps: | |
- id: deployment | |
uses: actions/deploy-pages@v4 |