Skip to content

Commit

Permalink
Fix documentation.yml GitHub action
Browse files Browse the repository at this point in the history
  • Loading branch information
odow committed Sep 24, 2023
1 parent 25f8d4d commit e2e7259
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,13 @@ jobs:
with:
version: '1'
- name: Install dependencies
run: julia --color=yes --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.develop("MathOptInterface"); Pkg.instantiate()'
shell: julia --color=yes --project=docs/ {0}
run: |
using Pkg
Pkg.develop(PackageSpec(path=pwd()))
Pkg.instantiate()
import MathOptInterface
Pkg.develop(path=pkgdir(MathOptInterface))
- name: Build and deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token
Expand Down

0 comments on commit e2e7259

Please sign in to comment.