Skip to content

Reorg 2

Reorg 2 #227

Workflow file for this run

name: Build website
on:
push:
branches: [main]
pull_request:
schedule:
- cron: '15 2 * * *' # 2:15 AM UTC every day
jobs:
docs:
name: MultiDocumentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: "1"
- uses: julia-actions/cache@v2
- name: Install dependencies
shell: julia --color=yes --project=docs {0}
run: |
using Pkg
Pkg.instantiate()
- name: Aggregate and deploy
run: |
git config user.name github-actions
git config user.email [email protected]
julia --color=yes --project=docs docs/make.jl
env:
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}