25 lines
510 B
YAML
25 lines
510 B
YAML
name: Publish Snapshot CI
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
buildType:
|
|
description: Build Type
|
|
required: true
|
|
type: choice
|
|
options:
|
|
- debug
|
|
- release
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
publish-snapshot:
|
|
uses: ./.github/workflows/generate-aar.yml
|
|
with:
|
|
buildType: ${{ inputs.buildType }}
|
|
nexusRepository: maven-snapshots
|
|
secrets: inherit
|