Skip to content

Commit 374f071

Browse files
committed
Fix branch name in workflows
1 parent e34a5e9 commit 374f071

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ name: Build
33
on:
44
push:
55
branches:
6-
- master
6+
- main
77

88
pull_request:
99
branches:
10-
- master
10+
- main
1111

1212
jobs:
1313
build:

.github/workflows/docs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,21 @@ name: Build Documentation
33
on:
44
pull_request:
55
branches:
6-
- master
6+
- main
77
push:
88
branches:
9-
- master
9+
- main
1010

1111
jobs:
1212
build:
1313
runs-on: ubuntu-latest
14-
14+
1515
steps:
1616
- uses: actions/checkout@v1
1717
- name: Setup mdBook
1818
uses: peaceiris/actions-mdbook@v1
1919
with:
20-
mdbook-version: '0.4.0'
20+
mdbook-version: '0.4.0'
2121
- name: Build Documentation
2222
run: mdbook build
2323
working-directory: ./documentation

0 commit comments

Comments
 (0)