Skip to content

Sphinx documentation #3

Sphinx documentation

Sphinx documentation #3

Workflow file for this run

name: Deploy GitHub Pages
on:
push:
branches:
- main
pull_request:
jobs:
build:
steps:

Check failure on line 11 in .github/workflows/deploy.yml

View workflow run for this annotation

GitHub Actions / Deploy GitHub Pages

Invalid workflow file

The workflow is not valid. .github/workflows/deploy.yml (Line: 11, Col: 5): Required property is missing: runs-on
- name: Checkout code
uses: actions/checkout@v2
# Download artifact from another workflow (docs.yml)
- name: Download artifact
uses: actions/download-artifact@v2
with:
name: DocumentationHTML
path: ${{ github.workspace }}
deploy:
# Add a dependency to the build job
needs: build
runs-on: ubuntu-latest
steps:
# Add any necessary steps to build your GitHub page
# Deploy the built site
- name: Deploy to GitHub Pages
uses: actions/deploy-pages@v4
with:
branch: gh-pages # Or the branch you want to deploy to
folder: docs/
token: ${{ secrets.GITHUB_TOKEN }}