Skip to content

Commit

Permalink
allow manual deployment of docs via workflow dispatch
Browse files Browse the repository at this point in the history
  • Loading branch information
niksirbi committed Dec 19, 2023
1 parent 2e2e104 commit 34df592
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/docs_build_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
needs: build_sphinx_docs
permissions:
contents: write
if: github.event_name == 'push' && github.ref_type == 'tag'
if: (github.event_name == 'push' && github.ref_type == 'tag') || github.event_name == 'workflow_dispatch'
runs-on: ubuntu-latest
steps:
- uses: neuroinformatics-unit/actions/deploy_sphinx_docs@main
Expand Down

0 comments on commit 34df592

Please sign in to comment.