We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31e74fc commit 40a3e32Copy full SHA for 40a3e32
.github/workflows/pages.yml
@@ -3,7 +3,7 @@ name: Deploy MkDocs to GitHub Pages
3
on:
4
push:
5
branches:
6
- - main
+ - master
7
workflow_dispatch:
8
pull_request:
9
@@ -49,8 +49,8 @@ jobs:
49
# Add a dependency to the build job
50
needs: build
51
52
- # Only deploy on pushes to main or manual trigger of main branch
53
- if: github.ref == 'refs/heads/main'
+ # Only deploy on pushes to master or manual trigger of master branch
+ if: github.ref == 'refs/heads/master'
54
55
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
56
permissions:
0 commit comments