Skip to content

Commit

Permalink
Finish allowing manually triggered workflows to build docs
Browse files Browse the repository at this point in the history
  • Loading branch information
neil-lindquist committed Dec 2, 2023
1 parent 0b785f3 commit dd793c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ jobs:
script/generate-API-docs.ros
- name: Deploy Docs
if: github.event_name == 'push' && github.ref == 'refs/heads/master' && matrix.os == 'ubuntu-latest' && matrix.lisp == 'sbcl-bin'
if: (github.event_name == 'push' || github.event_name == 'workflow_dispatch') && github.ref == 'refs/heads/master' && matrix.os == 'ubuntu-latest' && matrix.lisp == 'sbcl-bin'
uses: crazy-max/ghaction-github-pages@v3
with:
target_branch: gh-pages
Expand Down

0 comments on commit dd793c8

Please sign in to comment.