Skip to content

Commit

Permalink
2024-07-19 update : fixing doc.
Browse files Browse the repository at this point in the history
  • Loading branch information
cbernalz committed Jul 20, 2024
1 parent b482006 commit e86b566
Showing 1 changed file with 16 additions and 12 deletions.
28 changes: 16 additions & 12 deletions .github/workflows/Documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,24 @@ name: Documentation
on:
push:
branches:
- master
tags: '*'
- main
pull_request:

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@latest
with:
version: '1.9'
- 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 }} # For authentication with GitHub Actions token
run: julia --project=docs/ docs/make.jl
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Julia
uses: julia-actions/setup-julia@v1
with:
julia-version: '1.9'

- name: Install dependencies
run: julia --project -e 'using Pkg; Pkg.instantiate()'

- name: Build Documentation
run: julia --project docs/make.jl

0 comments on commit e86b566

Please sign in to comment.