Skip to content

Commit dc93fc5

Browse files
committed
fix(deployment): only deploy website when it changes
1 parent 3705f9a commit dc93fc5

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/deploy-website.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@ on:
44
# Trigger the workflow every time you push to the `main` branch
55
# Using a different branch name? Replace `main` with your branch’s name
66
push:
7-
branches: [main]
7+
branches:
8+
- main
9+
paths:
10+
- 'website/**'
11+
812
# Allows you to run this workflow manually from the Actions tab on GitHub.
913
workflow_dispatch:
1014

0 commit comments

Comments
 (0)