changes to adapt to compressed line table format #580
Workflow file for this run
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: Documenter | |
on: | |
push: | |
branches: [master] | |
tags: [v*] | |
pull_request: | |
jobs: | |
Documenter: | |
name: Documentation | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- uses: julia-actions/setup-julia@v1 | |
with: | |
version: '1' | |
show-versioninfo: true # print versioninfo in the action log | |
- uses: actions/checkout@v3 | |
- uses: julia-actions/julia-buildpkg@latest | |
- uses: julia-actions/julia-docdeploy@latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} |