Skip to content

Commit

Permalink
Change documentation build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ohno committed Nov 13, 2023
1 parent daea54c commit f03437b
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
# https://documenter.juliadocs.org/stable/man/hosting/#GitHub-Actions

name: Documentation
on:
push:
branches:
- main
tags: ['*']
pull_request:
concurrency:
# Skip intermediate builds: always.
# Cancel intermediate builds: only if it is a pull request build.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
jobs:
docs:
name: Documentation
runs-on: ubuntu-latest
Expand Down

0 comments on commit f03437b

Please sign in to comment.