Skip to content

Commit 0553a06

Browse files
committed
fix
1 parent d795bde commit 0553a06

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

.github/workflows/build.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ concurrency:
1010

1111
defaults:
1212
run:
13-
working-directory: intellij-aicoder
13+
working-directory: .
1414

1515
jobs:
1616
build:
@@ -52,6 +52,7 @@ jobs:
5252
gradle-home-cache-cleanup: true
5353

5454
- name: Export Properties
55+
working-directory: intellij-aicoder
5556
id: properties
5657
shell: bash
5758
run: |
@@ -67,9 +68,11 @@ jobs:
6768
echo "EOF" >> $GITHUB_OUTPUT
6869
6970
- name: Build plugin
70-
run: ./gradlew buildPlugin
71+
working-directory: intellij-aicoder
72+
run: ../gradlew buildPlugin
7173

7274
- name: Prepare Plugin Artifact
75+
working-directory: intellij-aicoder
7376
id: artifact
7477
shell: bash
7578
run: |
@@ -78,6 +81,7 @@ jobs:
7881
echo "filename=${FILENAME:0:-4}" >> $GITHUB_OUTPUT
7982
8083
- name: Upload artifact
84+
working-directory: intellij-aicoder
8185
uses: actions/upload-artifact@v4
8286
with:
8387
name: ${{ steps.artifact.outputs.filename }}
@@ -101,7 +105,8 @@ jobs:
101105
uses: gradle/actions/setup-gradle@v4
102106

103107
- name: Run Tests
104-
run: ./gradlew check
108+
working-directory: intellij-aicoder
109+
run: ../gradlew check
105110

106111
- name: Collect Tests Result
107112
if: ${{ failure() }}
@@ -145,7 +150,8 @@ jobs:
145150
key: plugin-verifier-${{ hashFiles('intellij-aicoder/build/listProductsReleases.txt') }}
146151

147152
- name: Run Plugin Verification tasks
148-
run: ./gradlew verifyPlugin -Dplugin.verifier.home.dir=${{ needs.build.outputs.pluginVerifierHomeDir }}
153+
working-directory: intellij-aicoder
154+
run: ../gradlew verifyPlugin -Dplugin.verifier.home.dir=${{ needs.build.outputs.pluginVerifierHomeDir }}
149155

150156
- name: Collect Plugin Verifier Result
151157
if: ${{ always() }}

0 commit comments

Comments
 (0)