typo (#43) #147
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 | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
BuildAndDeploy: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
persist-credentials: false | |
- uses: julia-actions/setup-julia@v1 | |
with: | |
version: "1.7" | |
- uses: julia-actions/cache@v1 | |
- name: Install GLMakie dependencies | |
run: sudo apt-get update && sudo apt-get install -y xorg-dev imagemagick mesa-utils xvfb libgl1 freeglut3-dev libxrandr-dev libxinerama-dev libxcursor-dev libxi-dev libxext-dev | |
- name: Install dependencies | |
run: julia --color=yes --project -e 'using Pkg; Pkg.instantiate(); | |
using Books; Books.install_dependencies()' | |
- run: > | |
DISPLAY=:0 xvfb-run -s '-screen 0 1024x768x24' julia --project -e 'using JDS; JDS.build()' | |
env: | |
# Fix for Plots with GR backend. | |
GKSwstype: nul | |
- name: Deploy to secondary branch | |
if: ${{ github.event_name != 'pull_request' }} | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
force_orphan: true | |
publish_dir: ./_build/ |