Skip to content

Commit c121122

Browse files
committedSep 28, 2023
Add push event back as it borked CI
1 parent c5b346f commit c121122

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.