Skip to content

Commit

Permalink
CI: Allow Docs Deploy on Manual Runs
Browse files Browse the repository at this point in the history
  • Loading branch information
HTRamsey committed Apr 19, 2024
1 parent b6c75cf commit 6015598
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/docs_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
retention-days: 1

deploy:
if: ${{ github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.merged) }}
if: ${{ github.event_name == 'push' || github.event_name == 'workflow_dispatch' || (github.event_name == 'pull_request' && github.event.pull_request.merged) }}
needs: build
runs-on: ubuntu-latest

Expand Down

0 comments on commit 6015598

Please sign in to comment.