Files
alfred-android/.github/workflows/publish-snapshot.yml
2024-06-21 12:11:21 -07:00

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