Skip to content

Commit d1f4574

Browse files
author
Andrew Smith
authoredSep 28, 2023
Merge pull request #572 from supabase-community/silentworks/add-push-event
Add push event back as it borked CI
2 parents c5b346f + c121122 commit d1f4574

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: CI/CD
22

3-
on: [pull_request, workflow_dispatch]
3+
on: [pull_request, push, workflow_dispatch]
44

55
jobs:
66
test:
@@ -31,7 +31,7 @@ jobs:
3131
uses: codecov/codecov-action@v1
3232
publish:
3333
needs: test
34-
if: ${{ !startsWith(github.event.head_commit.message, 'bump') && !startsWith(github.event.head_commit.message, 'chore') && github.ref == 'refs/heads/main' && github.repository_owner == 'supabase-community' }}
34+
if: ${{ !startsWith(github.event.head_commit.message, 'bump') && !startsWith(github.event.head_commit.message, 'chore') && github.ref == 'refs/heads/main' && github.event_name == 'push' && github.repository_owner == 'supabase-community' }}
3535
runs-on: ubuntu-latest
3636
name: "Bump version, create changelog and publish"
3737
environment:

0 commit comments

Comments
 (0)
Please sign in to comment.