Skip to content

Commit

Permalink
ci: update documentation workflow to use the centralised reusable wor…
Browse files Browse the repository at this point in the history
…kflow
  • Loading branch information
thazhemadam committed Apr 30, 2024
1 parent 3eee696 commit ab091ea
Showing 1 changed file with 10 additions and 22 deletions.
32 changes: 10 additions & 22 deletions .github/workflows/Documentation.yml
Original file line number Diff line number Diff line change
@@ -1,32 +1,20 @@
name: Documentation
name: "Documentation"

on:
push:
branches:
- main
- 'release-'
tags: '*'
pull_request:
schedule:
- cron: '34 21 * * 4'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref_name != github.event.repository.default_branch || github.ref != 'refs/tags/v*' }}

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@latest
with:
version: '1'
- 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
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} # For authentication with SSH deploy key
run: julia --project=docs/ --code-coverage=user docs/make.jl
- uses: julia-actions/julia-processcoverage@v1
with:
directories: src
- uses: codecov/codecov-action@v4
with:
files: lcov.info
build-and-deploy-docs:
name: "Documentation"
uses: "SciML/.github/.github/workflows/documentation.yml@v1"
secrets: "inherit"

0 comments on commit ab091ea

Please sign in to comment.