Update deps #24
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- main | |
- 'releases/**' | |
tags: '*' | |
pull_request: | |
release: | |
jobs: | |
docs: | |
name: Documentation | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: julia-actions/setup-julia@latest | |
with: | |
version: '1' | |
- name: Cache artifacts | |
uses: actions/cache@v2 | |
env: | |
cache-name: cache-artifacts | |
with: | |
path: ~/.julia/artifacts | |
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/docs/Project.toml') }} | |
restore-keys: | | |
${{ runner.os }}-test-${{ env.cache-name }}- | |
${{ runner.os }}-test- | |
${{ runner.os }}- | |
- name: Add registries | |
run: julia legend_julia_setup.jl | |
- name: Copy the data | |
run: cp -r data docs/src/data | |
- name: Copy the Project.toml and Manifest.toml | |
run: cp *.toml docs/src/. | |
- uses: julia-actions/julia-buildpkg@latest | |
- name: Make and deploy docs | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} | |
GKSwstype: 'nul' | |
run: julia --color=yes --project=docs/ -e 'using Pkg; Pkg.add("Documenter"); Pkg.instantiate(); cd("docs"); include("make.jl")' |