summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHarsh Shandilya <me@msfjarvis.dev>2022-06-20 15:11:34 +0530
committerHarsh Shandilya <me@msfjarvis.dev>2022-06-20 15:11:34 +0530
commit783503ee7d2d360eb4d6b5c3aff0fc3be9105c8a (patch)
tree8a164956a281c73cbed9a2e295e9e082793228d1
parent816e1a821916c60b900ee3fbc3fc19dbc00a3d85 (diff)
github: fix library release workflowautofill-parser-v1.1.1
-rw-r--r--.github/workflows/deploy_library_releases.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/deploy_library_releases.yml b/.github/workflows/deploy_library_releases.yml
index 6a1c21d0..57180a0e 100644
--- a/.github/workflows/deploy_library_releases.yml
+++ b/.github/workflows/deploy_library_releases.yml
@@ -32,7 +32,7 @@ jobs:
- name: Upload binaries
uses: gradle/gradle-build-action@v2.2.0
with:
- arguments: :${{ steps.task-select.outputs.PROJECT }}:publishAllPublicationsToMavenCentralRepository
+ arguments: --no-configuration-cache :${{ steps.task-select.outputs.PROJECT }}:publishAllPublicationsToMavenCentralRepository
env:
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.NEXUS_PUBLISH_USERNAME }}
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.NEXUS_PUBLISH_PASSWORD }}
@@ -42,7 +42,7 @@ jobs:
- name: Close and release repository
uses: gradle/gradle-build-action@v2.2.0
with:
- arguments: closeAndReleaseRepository
+ arguments: --no-configuration-cache closeAndReleaseRepository
env:
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.NEXUS_PUBLISH_USERNAME }}
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.NEXUS_PUBLISH_PASSWORD }}