Skip to content

Issue #59: Display the connector variables #65

Issue #59: Display the connector variables

Issue #59: Display the connector variables #65

Workflow file for this run

name: Maven Build
on:
pull_request:
branches: [ "main" ]
workflow_dispatch:
inputs:
debug:
type: boolean
description: Maven debug mode
required: false
default: false
ssh:
type: boolean
description: Open SSH session in the runner
required: false
default: false
jobs:
build:
uses: sentrysoftware/workflows/.github/workflows/maven-build.yml@main
with:
jdkVersion: "17"
debug: ${{ github.event_name == 'workflow_dispatch' && inputs.debug }}
ssh: ${{ github.event_name == 'workflow_dispatch' && inputs.ssh }}