18 lines
335 B
YAML
18 lines
335 B
YAML
name: Publish Release CI
|
|
|
|
on:
|
|
push:
|
|
tags: [ v* ]
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
publish-release:
|
|
uses: ./.github/workflows/generate-aar.yml
|
|
with:
|
|
buildType: release
|
|
nexusRepository: maven-releases
|
|
secrets: inherit
|