Skip to content

Commit

Permalink
combining workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
claytonpbarrows committed Dec 8, 2024
1 parent 9dacefd commit 15ae343
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 25 deletions.
25 changes: 0 additions & 25 deletions .github/workflows/docs.yml

This file was deleted.

14 changes: 14 additions & 0 deletions .github/workflows/jekyll.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,20 @@ concurrency:
cancel-in-progress: false

jobs:
build_jl:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
with:
version: '1.6'
- name: Install dependencies
run: julia --project=SiennaDocs/docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=joinpath(pwd(),"SiennaDocs"))); Pkg.instantiate()'
- name: Build and deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
run: julia --project=SiennaDocs/docs --color=yes SiennaDocs/docs/make.jl
# Build job
build:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 15ae343

Please sign in to comment.