Skip to content

Fix color convert section in howdoi.md #5

Fix color convert section in howdoi.md

Fix color convert section in howdoi.md #5

Workflow file for this run

name: Build & serve master
on:
push:
branches:
- master
- main
workflow_dispatch:
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Configure github actions user
run: |
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
- name: Prep Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install pip deps
run: python -m pip install --user mkdocs-material mkdocstrings[python] pymdown-extensions mike
- name: Build and deploy master
run: mike deploy -p -u master
- name: Set default
run: mike set-default -p master