Skip to content

Commit

Permalink
Try to fix Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
HaoxuanGuo committed Oct 21, 2023
1 parent 02e1ebd commit 744307e
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,16 @@ jobs:
HTML:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Julia
run: |
pip install jill
jill install --confirm
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@v1
with:
version: "1"
- name: Install dependencies
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
run: |
julia --project=docs/ -e '
using Pkg
Pkg.develop(PackageSpec(path=pwd()))
Pkg.instantiate()'
- name: Build and deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 744307e

Please sign in to comment.