Skip to content

Commit a3285a5

Browse files
committed
fix: Conditional to allow manual triggering of server release workflow
1 parent 82f824b commit a3285a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/server-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ permissions:
1515
jobs:
1616
release-server:
1717
name: Build and push Docker image
18-
if: startsWith(github.ref_name, 'server-v')
18+
if: github.event_name == 'workflow_dispatch' || startsWith(github.ref_name, 'server-v')
1919
runs-on: ubuntu-latest
2020
timeout-minutes: 30
2121
steps:

0 commit comments

Comments
 (0)