Skip to content

Commit a16b3a9

Browse files
committed
Try to fix publishing.
1 parent 3283720 commit a16b3a9

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/deploy.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -51,18 +51,18 @@ jobs:
5151
- name: publish all
5252
if: "${{ github.event.inputs.to_publish == 'all' }}"
5353
run: |
54-
./gradlew :changelogPush -Prelease=true --stacktrace --warning-mode all
55-
./gradlew :plugin-gradle:changelogPush -Prelease=true -Pgradle.publish.key=${{ secrets.GRADLE_KEY }} -Pgradle.publish.secret=${{ secrets.GRADLE_SECRET }} --stacktrace --warning-mode all
56-
./gradlew :plugin-maven:changelogPush -Prelease=true --stacktrace --warning-mode all
54+
./gradlew :changelogPush -Prelease=true --stacktrace --warning-mode all --no-configuration-cache
55+
./gradlew :plugin-gradle:changelogPush -Prelease=true -Pgradle.publish.key=${{ secrets.GRADLE_KEY }} -Pgradle.publish.secret=${{ secrets.GRADLE_SECRET }} --stacktrace --warning-mode all --no-configuration-cache
56+
./gradlew :plugin-maven:changelogPush -Prelease=true --stacktrace --warning-mode all --no-configuration-cache
5757
- name: publish just plugin-gradle
5858
if: "${{ github.event.inputs.to_publish == 'plugin-gradle' }}"
5959
run: |
60-
./gradlew :plugin-gradle:changelogPush -Prelease=true -Pgradle.publish.key=${{ secrets.GRADLE_KEY }} -Pgradle.publish.secret=${{ secrets.GRADLE_SECRET }} --stacktrace --warning-mode all
60+
./gradlew :plugin-gradle:changelogPush -Prelease=true -Pgradle.publish.key=${{ secrets.GRADLE_KEY }} -Pgradle.publish.secret=${{ secrets.GRADLE_SECRET }} --stacktrace --warning-mode all --no-configuration-cache
6161
- name: publish just plugin-maven
6262
if: "${{ github.event.inputs.to_publish == 'plugin-maven' }}"
6363
run: |
64-
./gradlew :plugin-maven:changelogPush -Prelease=true --stacktrace --warning-mode all
64+
./gradlew :plugin-maven:changelogPush -Prelease=true --stacktrace --warning-mode all --no-configuration-cache
6565
- name: publish just lib
6666
if: "${{ github.event.inputs.to_publish == 'lib' }}"
6767
run: |
68-
./gradlew :changelogPush -Prelease=true --stacktrace --warning-mode all
68+
./gradlew :changelogPush -Prelease=true --stacktrace --warning-mode all --no-configuration-cache

0 commit comments

Comments
 (0)