Skip to content

Commit 5bcc993

Browse files
committed
Fix
1 parent a4c4241 commit 5bcc993

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/cd.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ name: CD
55

66
on:
77
push:
8-
branches: [ master ]
8+
branches: [ master, main ]
99

1010
jobs:
1111
release:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout repo
15-
uses: actions/checkout@master
15+
uses: actions/checkout@main
1616
with:
1717
fetch-depth: 0 # To fetch all history for tags
1818

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: CI
22

33
on:
44
push:
5-
branches: [ master ]
5+
branches: [ master, main ]
66
pull_request:
7-
branches: [ master ]
7+
branches: [ master, main ]
88

99
jobs:
1010
build:

0 commit comments

Comments
 (0)