We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4d6ab0 commit f398993Copy full SHA for f398993
.github/workflows/deploy.yml
@@ -1,10 +1,12 @@
1
name: Deploy to GitHub Pages
2
3
on:
4
- # Trigger the workflow every time you push to the `main` branch
5
- # Using a different branch name? Replace `main` with your branch’s name
+ # Trigger the workflow every time you push to the `main` or `master` branch
+ # but only if changes occur in the docs/ folder.
6
push:
7
branches: [master, main]
8
+ paths:
9
+ - 'docs/**'
10
# Allows you to run this workflow manually from the Actions tab on GitHub.
11
workflow_dispatch:
12
0 commit comments