From dcabf3f61b1e13fdacdd63a1dc3785a50a136c67 Mon Sep 17 00:00:00 2001 From: Matheus Martins Date: Wed, 3 Jun 2026 22:28:26 +0000 Subject: [PATCH] Fix broken line continuation in release workflow The `./gradlew` line was missing a trailing backslash, so the run block executed as three separate commands -- `buildPlugin` ran standalone and failed with "command not found" (exit 127). Co-Authored-By: Claude Opus 4.8 (1M context) --- .github/workflows/release-phpstorm-plugin.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-phpstorm-plugin.yml b/.github/workflows/release-phpstorm-plugin.yml index b5b761b..12e1aea 100644 --- a/.github/workflows/release-phpstorm-plugin.yml +++ b/.github/workflows/release-phpstorm-plugin.yml @@ -70,7 +70,7 @@ jobs: # FAILS if that property is unset/empty -- a release zip never ships # without an embedded LSP. run: | - ./gradlew + ./gradlew \ buildPlugin \ -PpluginVersion=${{ steps.tag.outputs.version }}