squash! ci : re-enable bindings-java (java) job

Add a condition to the bindings-java job to only run when the event is a
push, pull_request, or the run_type is full-ci.
This commit is contained in:
Daniel Bevenius 2025-03-27 13:38:43 +01:00
parent 0208803b66
commit 5b141a977e

View File

@ -996,6 +996,8 @@ jobs:
# ./gradlew assembleRelease # ./gradlew assembleRelease
bindings-java: bindings-java:
if: ${{ github.event_name == 'push' || github.event_name == 'pull_request' ||
github.event.inputs.run_type == 'full-ci' }}
needs: ['windows'] needs: ['windows']
runs-on: windows-latest runs-on: windows-latest
steps: steps: