Skip to content

Commit dea430d

Browse files
authoredMar 17, 2025··
fix: workflow (#16)
1 parent eb273de commit dea430d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

Diff for: ‎.github/workflows/check.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ name: Check
55
on:
66
pull_request:
77

8-
# Push to master will trigger code checks
8+
# Push to main will trigger code checks
99
push:
1010
branches:
11-
- master
11+
- main
1212
tags-ignore:
1313
- "**" # Ignore all tags to prevent duplicate builds when tags are pushed.
1414

Diff for: ‎.github/workflows/pre_release.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
name: Create a pre-release
22

33
on:
4-
# Push to master will deploy a beta version
4+
# Push to main will deploy a beta version
55
push:
66
branches:
7-
- master
7+
- main
88
tags-ignore:
99
- "**" # Ignore all tags to prevent duplicate builds when tags are pushed.
1010

0 commit comments

Comments
 (0)
Please sign in to comment.