Skip to content

Commit da79808

Browse files
committed
fix: trigger workflow on docs-website branch
1 parent 193b6a7 commit da79808

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/docs.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
push:
55
branches:
66
- main
7+
- docs-website
78
pull_request:
89
branches:
910
- main
@@ -59,7 +60,7 @@ jobs:
5960
deploy-docs:
6061
needs: build-docs
6162
runs-on: ubuntu-latest
62-
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
63+
if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/docs-website')
6364

6465
permissions:
6566
contents: write # For GitHub Pages deployment

0 commit comments

Comments
 (0)