Remove JuliaCN 2022 winter footer #53
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: Documentation | |
on: | |
push: | |
branches: | |
- master | |
workflow_dispatch: | |
jobs: | |
HTML: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: julia-actions/setup-julia@v1 | |
with: | |
version: "1.8" | |
- name: Install dependencies | |
run: | | |
julia --project=docs/ -e ' | |
using Pkg | |
Pkg.develop(PackageSpec(path=pwd())) | |
Pkg.instantiate()' | |
- name: Build and deploy | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} | |
run: | | |
julia -e 'include("contrib/build_sysimg.jl"); build_sysimg(force=true)' | |
julia --project=doc/ doc/make.jl deploy | |
PDF: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build and deploy | |
timeout-minutes: 90 | |
uses: JuliaCN/[email protected] | |
with: | |
project_dir: 'doc' | |
format: pdf # trigger the pdf compilation in our doc/make.jl | |
- name: upload complied PDF file | |
uses: actions/upload-artifact@v2 | |
with: | |
name: compiled contents | |
path: doc/build/*.pdf |