Skip to content

Commit d8107a6

Browse files
committed
Fix GitHub Actions workflow
1 parent 4f135d7 commit d8107a6

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/deploy-docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Deploy Doxygen Documentation
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches: [ main, develope ]
66
pull_request:
7-
branches: [ main ]
7+
branches: [ main, develope ]
88

99
jobs:
1010
build-and-deploy:
@@ -24,7 +24,7 @@ jobs:
2424
2525
- name: Deploy to GitHub Pages
2626
uses: peaceiris/actions-gh-pages@v3
27-
if: github.ref == 'refs/heads/main'
27+
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develope'
2828
with:
2929
github_token: ${{ secrets.GITHUB_TOKEN }}
3030
publish_dir: ./lab2/docs/html

0 commit comments

Comments
 (0)