ci: allow docs deploy on workflow_dispatch

This commit is contained in:
Benoit Chesneau 2026-01-23 22:14:05 +01:00
parent eab5f0b1a5
commit 53f2c31012

View File

@ -48,7 +48,7 @@ jobs:
retention-days: 7
deploy:
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
if: (github.event_name == 'push' || github.event_name == 'workflow_dispatch') && github.ref == 'refs/heads/master'
needs: build
runs-on: ubuntu-latest
permissions: