Skip to content

Update Documentation.yml #18

Update Documentation.yml

Update Documentation.yml #18

Workflow file for this run

name: Documentation
on:
push:
branches:
- master
pull_request:
jobs:

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

View workflow run for this annotation

GitHub Actions / .github/workflows/Documentation.yml

Invalid workflow file

You have an error in your yaml syntax on line 8
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Julia
uses: julia-actions/setup-julia@v1
with:
julia-version: '1.9'
- name: Install dependencies
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
- name: Build and deploy
env:
GITHUB_TOKEN: ${{ secrets.DOCUMENTER_KEY }} # For authentication with GitHub Actions token
run: julia --project=docs/ docs/make.jl