23 lines
624 B
YAML
23 lines
624 B
YAML
name: Publish Version Catalog
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
BRANCH_REFERENCE:
|
|
description: Branch or tag to publish
|
|
required: true
|
|
default: master
|
|
|
|
jobs:
|
|
call-publish:
|
|
uses: aura-ascend/common-workflows/.gitea/workflows/publish-artifact.yaml@master
|
|
with:
|
|
JAVA_VERSION: 17
|
|
BRANCH_REFERENCE: ${{ inputs.BRANCH_REFERENCE }}
|
|
# BRANCH_REFERENCE: ${{ github.event.inputs.BRANCH_REFERENCE }}
|
|
# BRANCH_REFERENCE: master
|
|
GRADLE_TASK: publish
|
|
secrets:
|
|
CI_BOT_USERNAME: ${{ secrets.CI_BOT_USERNAME }}
|
|
CI_BOT_TOKEN: ${{ secrets.CI_BOT_TOKEN }}
|