Skip to content

debug: try to understand why relative links don't work on github #166

debug: try to understand why relative links don't work on github

debug: try to understand why relative links don't work on github #166

Workflow file for this run

name: Documentation

Check failure on line 1 in .github/workflows/documentation.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/documentation.yml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: env
on:
push:
branches: [master, dev]
jobs:
env:
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
Documentation:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install '.[dev]'
- name: Set up Git
run: |
git config user.name ${{ github.actor }}
git config user.email ${{ github.actor }}@users.noreply.github.com
- name: Build documentation
run: |
git fetch origin gh-pages
mike delete $BRANCH_NAME
mike deploy --push $BRANCH_NAME