Skip to content

Commit 9155aa8

Browse files
committed
chore(workflows/website): allow to run on other branches than "master"
1 parent 9d94112 commit 9155aa8

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/website.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,14 @@ on:
44
push:
55
branches:
66
- 'master'
7-
- '!beta' # only deploy the website on "master"
8-
- '!gh-pages'
7+
- 'old/**'
8+
- 'beta'
99
paths: # only run this deploy if an file in the following directories are changed
1010
- 'docs/**'
1111
- 'website/**'
12-
release:
13-
types: [created]
12+
- '.github/workflows/website.yml'
13+
- 'scripts/getDeployInfo.js'
14+
- 'scripts/ghPagesDeploy.js'
1415

1516
permissions:
1617
contents: read

0 commit comments

Comments
 (0)