Skip to content

doc

doc #2

Workflow file for this run

name: doc
on:
push:
workflow_dispatch:
jobs:
deploy-doc:

Check failure on line 8 in .github/workflows/doc.yml

View workflow run for this annotation

GitHub Actions / doc

Invalid workflow file

The workflow is not valid. .github/workflows/doc.yml (Line: 8, Col: 3): The workflow must contain at least one job with no dependencies.
needs: deploy
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-mkdocs.txt
pip install setuptools wheel twine
- name: Build and publish
run: |
VERSION=$(cat VERSION)
mike deploy --push --update-aliases "$VERSION" latest