2020-11-29 11:16:39 +00:00
|
|
|
name: "Release library subprojects"
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
tags:
|
|
|
|
- openpgp-ktx-v*
|
|
|
|
- autofill-parser-v*
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
publish-release:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2020-12-07 07:47:16 +00:00
|
|
|
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
|
2020-11-29 11:16:39 +00:00
|
|
|
|
|
|
|
- name: Determine publishing task
|
|
|
|
id: task-select
|
|
|
|
run: |
|
|
|
|
set -x
|
|
|
|
TAG=${GITHUB_REF/refs\/tags\//}
|
|
|
|
if [[ "${TAG}" =~ "openpgp-ktx" ]]; then
|
|
|
|
echo '::set-output name=PROJECT::openpgp-ktx'
|
|
|
|
elif [[ "${TAG}" =~ "autofill-parser" ]]; then
|
|
|
|
echo '::set-output name=PROJECT::autofill-parser'
|
|
|
|
fi
|
|
|
|
|
|
|
|
- name: Publish snapshot
|
|
|
|
uses: burrunan/gradle-cache-action@03c71a8ba93d670980695505f48f49daf43704a6
|
|
|
|
with:
|
|
|
|
arguments: :${{ steps.task-select.outputs.PROJECT }}:publishApsPublicationToBintrayRepository
|
|
|
|
env:
|
|
|
|
MAVEN_USER: msfjarvis
|
|
|
|
MAVEN_PASSWORD: ${{ secrets.BINTRAY_TOKEN }}
|