Skip to content

Commit c15d5df

Browse files
feat: fix auto-release doesn't work bug (#9)
1 parent 0dff36b commit c15d5df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
release:
5858
needs: [test, build-binaries]
5959
runs-on: ubuntu-latest
60-
if: github.event_name == 'pull_request' && github.base_ref == 'master'
60+
if: github.ref == 'refs/heads/master' || github.event_name == 'pull_request'
6161

6262
steps:
6363
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)