Skip to content

update unifontex

update unifontex #1

Workflow file for this run

---
name: docs
on:
push:
tags: ['*']
jobs:
pub-docs:

Check failure on line 7 in .github/workflows/docs.yml

View workflow run for this annotation

GitHub Actions / docs

Invalid workflow file

The workflow is not valid. .github/workflows/docs.yml (Line: 7, Col: 3): The workflow must contain at least one job with no dependencies.
name: Publish MkDocs
runs-on: ubuntu-latest
needs: [export-windows, export-linux, export-mac]
steps:
- uses: actions/checkout@v4
with:
lfs: true
- name: Configure Git Credentials
run: |
git config user.name github-actions[bot]
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
- uses: actions/setup-python@v5
with:
python-version: 3.x
- run: echo "cache_id=$(date --utc '+%V')" >> "$GITHUB_ENV"
- uses: actions/cache@v4
with:
key: mkdocs-material-${{ env.cache_id }}
path: .cache
restore-keys: |
mkdocs-material-
- name: Install Deps
run: pip install -r requirements.txt
- name: Deploy
run: |-
case $GITHUB_REF_NAME in
doc-*)
GITHUB_REF_NAME=$(echo "$GITHUB_REF_NAME" | sed '/^doc-//')
;;
esac
alias=$(case $GITHUB_REF_NAME in
*-*) "prerelease" ;;
*) "latest" ;;
esac)
mike deploy --push --update-aliases "$GITHUB_REF_NAME" "$alias"