Skip to content

Commit

Permalink
[CI] Fix version of julia-actions/julia-docdeploy workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
giordano committed Nov 15, 2024
1 parent 46678bf commit d1dfb54
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: Documentation
on:
push:
paths:
- '.github/workflows/documentation.yml'
- 'Project.toml'
- 'docs/**'
- 'src/**'
Expand All @@ -11,19 +12,26 @@ on:
tags: '*'
pull_request:
paths:
- '.github/workflows/documentation.yml'
- 'Project.toml'
- 'docs/**'
- 'src/**'

concurrency:
# Skip intermediate builds: always.
# Cancel intermediate builds: always.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
build:
build-docs:
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: julia-actions/cache@v2
with:
cache-name: "docs"
- uses: julia-actions/julia-docdeploy@releases/v1
- uses: julia-actions/julia-docdeploy@v1
env:
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}

0 comments on commit d1dfb54

Please sign in to comment.