Bump version #77
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: Build documentation | |
on: | |
push: | |
branches: | |
- 'main' | |
tags: '*' | |
pull_request: | |
release: | |
types: [published] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: julia-actions/setup-julia@v1 | |
- uses: julia-actions/cache@v1 | |
- name: Run apt-get update | |
run: sudo apt-get update | |
- name: Install GLMakie dependencies | |
run: sudo apt-get install -y cmake xorg-dev mesa-utils xvfb libgl1 freeglut3-dev | |
- name: Build and deploy | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} | |
run: xvfb-run -s '-screen 0 1024x768x24' julia --project=docs/ | |
--color=yes docs/make.jl |