Skip to content

Commit eb3dff7

Browse files
author
Omer Bulut
committed
fix: enable release job for manual workflow dispatch and release events
1 parent 84d62de commit eb3dff7

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
branches: [ main ]
88
release:
99
types: [ published ]
10+
workflow_dispatch:
1011

1112
jobs:
1213
test:
@@ -93,7 +94,7 @@ jobs:
9394
needs: test
9495
runs-on: ubuntu-latest
9596
timeout-minutes: 25
96-
if: github.event_name == 'release'
97+
if: github.event_name == 'release' || github.event_name == 'workflow_dispatch'
9798

9899
steps:
99100
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)