Skip to content

Commit

Permalink
Don't use build and config gradle caches in RC building workflows (#1241
Browse files Browse the repository at this point in the history
)

## Goal

The nexus plugin doesn't like config cache, so disabling both that and the build cache.
  • Loading branch information
bidetofevil authored Aug 13, 2024
1 parent 1e7f96d commit d7b6bad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-rc-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:

- name: Generate SDK RC - Publish and close Sonatype repository
run: |
./gradlew clean publishReleasePublicationToSonatype closeSonatypeStagingRepository -Dorg.gradle.parallel=false --stacktrace
./gradlew clean publishReleasePublicationToSonatype closeSonatypeStagingRepository -Dorg.gradle.parallel=false --no-build-cache --no-configuration-cache --stacktrace
- name: Archive Test Results
if: ${{ always() }}
Expand All @@ -106,7 +106,7 @@ jobs:

- name: Generate Swazzler RC - Publish and Close repository
run: |
./gradlew clean check publishToSonatype closeSonatypeStagingRepository -Dorg.gradle.parallel=false --stacktrace
./gradlew clean check publishToSonatype closeSonatypeStagingRepository -Dorg.gradle.parallel=false --no-build-cache --no-configuration-cache --stacktrace
- name: Set version tag in Swazzler
run: |
Expand Down

0 comments on commit d7b6bad

Please sign in to comment.