Skip to content

Commit 5564f2b

Browse files
committed
only trigger publish on non-workflow dispatch triggers
1 parent d68243c commit 5564f2b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/test-java-bindings-new.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ jobs:
110110
name: Publish
111111
# needs: [build, test]
112112
runs-on: ubuntu-latest
113-
if: ${{ inputs.release-type != 'none' }}
113+
if: ${{ inputs.release-type != 'none' }} && github.event_name == 'workflow_dispatch'
114114
steps:
115115
- uses: actions/checkout@v4
116116
with:

0 commit comments

Comments
 (0)