Skip to content

Commit 07d1ffa

Browse files
author
Andrew Smith
authored
chore: allow manual workflow trigger for releases (#19)
2 parents b787f01 + 2a01399 commit 07d1ffa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
uses: codecov/codecov-action@v3
3737
publish:
3838
needs: test
39-
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' }}
39+
if: ${{ !startsWith(github.event.head_commit.message, 'bump') && !startsWith(github.event.head_commit.message, 'chore') && github.ref == 'refs/heads/main' && contains(fromJSON('["push", "workflow_dispatch"]'), github.event_name) && github.repository_owner == 'supabase-community' }}
4040
runs-on: ubuntu-latest
4141
name: "Bump version, create changelog and publish"
4242
environment:

0 commit comments

Comments
 (0)