Skip to content

Commit 91ccafa

Browse files
committed
WIP: fixup the workflow
1 parent 9b3d3ba commit 91ccafa

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
dry_run:
1111
description: "Run in dry-run mode (no publish)"
1212
required: false
13-
default: "false"
13+
default: "true"
1414

1515
jobs:
1616
release:
@@ -23,8 +23,7 @@ jobs:
2323
contents: write
2424
issues: write
2525
pull-requests: write
26-
if: >-
27-
((github.event_name == 'workflow_run' && github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.head_branch == 'master') || github.event_name == 'workflow_dispatch')
26+
if: github.event_name == 'workflow_dispatch' || (github.event_name == 'workflow_run' && github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.head_branch == 'master')
2827
steps:
2928
- uses: actions/checkout@v4
3029
- uses: actions/setup-java@v4

0 commit comments

Comments
 (0)