Skip to content

Bump julia-actions/setup-julia from 2.2 to 2.3 #62

Bump julia-actions/setup-julia from 2.2 to 2.3

Bump julia-actions/setup-julia from 2.2 to 2.3 #62

Workflow file for this run

name: Documentation
on:
pull_request:
push:
branches:
- 'main'
tags: '*'
release:
types: [published]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
julia-version: 'lts'

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

View workflow run for this annotation

GitHub Actions / Documentation

Invalid workflow file

The workflow is not valid. .github/workflows/docs.yml (Line: 17, Col: 24): Unexpected value 'lts'
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
- uses: julia-actions/[email protected]
with:
version: ${{ matrix.julia-version }}
- 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.GITHUB_TOKEN }}
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} # If authenticating with SSH deploy key
run: julia --project=docs/ docs/make.jl