Skip to content

Commit 8d8ee8a

Browse files
committed
fix
1 parent cbb61f0 commit 8d8ee8a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,9 @@ jobs:
7474
shell: bash
7575
run: |
7676
echo "Starting properties export..."
77-
PROPERTIES="$(../gradlew properties --console=plain -q)"
77+
PROPERTIES="$(./gradlew properties --console=plain -q)"
7878
VERSION="$(echo "$PROPERTIES" | grep "^version:" | cut -f2- -d ' ')"
79-
CHANGELOG="$(../gradlew getChangelog --unreleased --no-header --console=plain -q)"
79+
CHANGELOG="$(./gradlew getChangelog --unreleased --no-header --console=plain -q)"
8080
echo "Detected version: $VERSION"
8181
8282
echo "version=$VERSION" >> $GITHUB_OUTPUT
@@ -91,7 +91,7 @@ jobs:
9191
working-directory: intellij-aicoder
9292
run: |
9393
echo "Starting plugin build..."
94-
../gradlew buildPlugin --info
94+
./gradlew buildPlugin --info
9595
echo "Plugin build completed"
9696
9797
- name: Prepare Plugin Artifact

0 commit comments

Comments
 (0)