Skip to content

Jf/add demand response component #37

Jf/add demand response component

Jf/add demand response component #37

Workflow file for this run

name: Documentation
on:
push:
branches:
- main
tags: '*'
pull_request:
jobs:
docs:
name: Documentation
runs-on: macOS-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@latest
with:
version: '1'
- name: Configure doc environment
run: |
julia --project=docs/ -e '
println(pwd());
using Pkg
# Develop all packages in workspace
Pkg.develop([
(path="PRASCore.jl",),
(path="PRASFiles.jl",),
(path="PRASCapacityCredits.jl",),
(path="PRAS.jl",)
])
Pkg.instantiate()'
- name: Build and deploy docs
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: julia --project=docs/ --threads auto docs/make.jl deploy=true