Skip to content

Dispatch Build

Dispatch Build #4

name: Dispatch Build
on:
workflow_dispatch:
inputs:
isRelease:
description: "Release to maven"
required: true
type: boolean
jobs:
build-and-upload:
uses: ./.github/workflows/build_and_upload.yml
with:
isRelease: ${{ inputs.isRelease }}
shouldUpload: true
secrets: inherit