aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorHarsh Shandilya <me@msfjarvis.dev>2022-07-15 14:51:39 +0530
committerHarsh Shandilya <me@msfjarvis.dev>2022-07-15 14:53:52 +0530
commit4548140cae6969fda5efbe6127788bc0c4294921 (patch)
treea09a224d9530c538d80b595cc3c01236989be803 /.github/workflows
parenta1f838151ec5423510fd9d52c89f3705e04040ce (diff)
Remove openpgp-ktx
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/deploy_library_releases.yml14
1 files changed, 1 insertions, 13 deletions
diff --git a/.github/workflows/deploy_library_releases.yml b/.github/workflows/deploy_library_releases.yml
index 1febdf42..6cdf5b1f 100644
--- a/.github/workflows/deploy_library_releases.yml
+++ b/.github/workflows/deploy_library_releases.yml
@@ -2,7 +2,6 @@ name: Release library subprojects
on:
push:
tags:
- - openpgp-ktx-v*
- autofill-parser-v*
jobs:
@@ -18,21 +17,10 @@ jobs:
distribution: temurin
java-version: 17
- - 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: Upload binaries
uses: gradle/gradle-build-action@v2.2.1
with:
- arguments: --no-configuration-cache :${{ steps.task-select.outputs.PROJECT }}:publishAllPublicationsToMavenCentralRepository
+ arguments: --no-configuration-cache :autofill-parser:publishAllPublicationsToMavenCentralRepository
env:
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.NEXUS_PUBLISH_USERNAME }}
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.NEXUS_PUBLISH_PASSWORD }}