Skip to content

Commit f6c95e1

Browse files
committed
fix: disable configuration cache for version update in release.yml
1 parent 461ad4b commit f6c95e1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070

7171
- name: Update version in gradle.properties
7272
run: |
73-
./gradlew updateVersion -PnewVersion=${{ needs.validate-version.outputs.version }}
73+
./gradlew updateVersion -PnewVersion=${{ needs.validate-version.outputs.version }} --no-configuration-cache
7474
7575
- name: Build plugin
7676
run: ./gradlew buildPlugin
@@ -181,8 +181,8 @@ jobs:
181181

182182
- name: Update version in gradle.properties
183183
run: |
184-
./gradlew updateVersion -PnewVersion=${{ needs.validate-version.outputs.version }}
185-
184+
./gradlew updateVersion -PnewVersion=${{ needs.validate-version.outputs.version }} --no-configuration-cache
185+
186186
- name: Sign and publish plugin to JetBrains Marketplace
187187
run: ./gradlew signPlugin publishPlugin
188188
env:

0 commit comments

Comments
 (0)