diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2022-07-15 14:51:39 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2022-07-15 14:53:52 +0530 |
commit | 4548140cae6969fda5efbe6127788bc0c4294921 (patch) | |
tree | a09a224d9530c538d80b595cc3c01236989be803 /.github/workflows | |
parent | a1f838151ec5423510fd9d52c89f3705e04040ce (diff) |
Remove openpgp-ktx
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/deploy_library_releases.yml | 14 |
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 }} |