Skip to content

Commit

Permalink
ci: include deploy job on workflow_dispatch
Browse files Browse the repository at this point in the history
to allow manual deployment of docs with new V versions
  • Loading branch information
ttytm committed May 23, 2024
1 parent af88dae commit 89bb388
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

deploy:
runs-on: ubuntu-latest
if: github.event_name == 'push' && github.ref_name == 'main' && github.repository == 'ttytm/vibe'
if: github.event_name != 'pull_request' && github.ref_name == 'main' && github.repository == 'ttytm/vibe'
needs: build
permissions:
contents: read
Expand Down

0 comments on commit 89bb388

Please sign in to comment.