Skip to content

Commit

Permalink
Fix (try) docs not being built for tags
Browse files Browse the repository at this point in the history
  • Loading branch information
halleysfifthinc committed Aug 23, 2024
1 parent ff99131 commit 77190d1
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
- master
- main
- 'release*'
tags: '*'
pull_request:

# needed to allow julia-actions/cache to delete old caches that it has created
Expand Down Expand Up @@ -33,7 +34,7 @@ jobs:
- x64
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
Expand All @@ -49,12 +50,13 @@ jobs:
name: Documentation
runs-on: ubuntu-latest
permissions:
contents: write # Required when authenticating with `GITHUB_TOKEN`, not needed when authenticating with SSH deploy keys
actions: write # Required when authenticating with `GITHUB_TOKEN`, not needed when authenticating with SSH deploy keys
contents: write
pull-requests: read # Required when using `push_preview=true`
statuses: write # Optional, used to report documentation build statuses
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
- uses: julia-actions/setup-julia@v2
with:
version: '1'
- uses: julia-actions/cache@v1
Expand Down

0 comments on commit 77190d1

Please sign in to comment.