-
Notifications
You must be signed in to change notification settings - Fork 2
34 lines (33 loc) · 905 Bytes
/
Copy pathdocs.yml
File metadata and controls
34 lines (33 loc) · 905 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: Generate and Deploy Documentation
on:
push:
branches:
- dev
tags: [v*]
pull_request:
jobs:
build:
permissions:
contents: write
actions: write
pull-requests: write
statuses: write
runs-on: ubuntu-latest
steps:
- uses: julia-actions/cache@v3
- uses: actions/checkout@v7
- uses: julia-actions/setup-julia@v3
with:
version: '1'
show-versioninfo: true
- run: |
julia --project=docs -e '
using Pkg
Pkg.develop(PackageSpec(path=joinpath(pwd(), "NotebookManagementTools")))'
- uses: julia-actions/julia-docdeploy@v1
with:
install-package: false # because we manually installed above
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
DOCUMENTER_DEBUG: "true"