Skip to content

Commit fac739c

Browse files
committed
fix: use correct path for IntelliJ Platform cache
The IntelliJ Platform Gradle Plugin stores artifacts in the project-local .intellijPlatform/ directory, not ~/.intellijPlatform. The cache was never hit because it was caching the wrong path.
1 parent d345f30 commit fac739c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Cache IntelliJ Platform
3434
uses: actions/cache@v4
3535
with:
36-
path: ~/.intellijPlatform
36+
path: .intellijPlatform
3737
key: intellij-${{ hashFiles('gradle.properties') }}
3838

3939
- name: Build Plugin

0 commit comments

Comments
 (0)