fix: suppress 'press q' prompt when input_stream is devnull #1089
Workflow file for this run
This file contains hidden or 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 | |
| - release-* | |
| paths: | |
| - "src/**" | |
| - "docs/**" | |
| - "README.md" | |
| - ".github/workflows/**" | |
| - "examples/**" | |
| tags: "*" | |
| pull_request: | |
| branches: | |
| - master | |
| paths: | |
| - "src/**" | |
| - "docs/**" | |
| - "README.md" | |
| - ".github/workflows/**" | |
| - "examples/**" | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| pull-requests: read | |
| statuses: write | |
| strategy: | |
| matrix: | |
| target: [astroautomata, cambridge] | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: julia-actions/setup-julia@v3 | |
| with: | |
| version: "1" | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: "20" | |
| - name: Load Julia packages from cache | |
| id: julia-cache | |
| uses: julia-actions/cache@v3 | |
| with: | |
| cache-name: julia-cache;workflow=${{ github.workflow }};job=${{ github.job }};os=${{ runner.os }};julia=1;project=${{ hashFiles('**/Project.toml') }} | |
| - name: "Install Julia dependencies" | |
| run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()' | |
| - name: "Install Node.js dependencies" | |
| run: cd docs && npm install | |
| - name: "Install ImageMagick" | |
| run: sudo apt-get update && sudo apt-get install -y imagemagick | |
| - name: "Build and deploy" | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| DOCUMENTER_KEY_ASTROAUTOMATA: ${{ secrets.DOCUMENTER_KEY }} | |
| DOCUMENTER_KEY_CAM: ${{ secrets.DAMTP_DEPLOY_KEY }} | |
| DOCUMENTER_PRODUCTION: "true" | |
| DEPLOYMENT_TARGET: ${{ matrix.target }} | |
| run: | | |
| julia --project=docs/ docs/make.jl | |
| - name: Save Julia depot cache on cancel or failure | |
| id: julia-cache-save | |
| if: cancelled() || failure() | |
| uses: actions/cache/save@v5 | |
| with: | |
| path: | | |
| ${{ steps.julia-cache.outputs.cache-paths }} | |
| key: ${{ steps.julia-cache.outputs.cache-key }} |