Skip to content

back to manual deploy #18

back to manual deploy

back to manual deploy #18

Workflow file for this run

name: Build
on:
push:
branches: [source]
pull_request:
schedule:
- cron: '15 2 * * *' # 2:15 AM UTC every day
jobs:
docs:
name: MultiDocumentation
runs-on: ubuntu-latest
steps:

Check failure on line 12 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 12
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: "1"
- uses: julia-actions/cache@v2
- name: Install dependencies
run: julia --project=docs/ -e 'using Pkg; Pkg.instantiate()'
- name: Aggregate and deploy
run: |
git config user.name github-actions
git config user.email [email protected]
julia --project=docs docs/make.jl --deploy --temp
env:
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}