Skip to content

Aggregate

Aggregate #110

Workflow file for this run

name: Aggregate
on:
push:
branches:
- main
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
jobs:
aggregate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: '1'
- name: Install dependencies
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(path="."); 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