This message was deleted.
# community-support
s
This message was deleted.
r
Not sure why it's doing that, but as a workaround you could put them in the
GRADLE_OPT*S*
environment variable
t
that is true 🙂
g
I had similar issue with linux tasks before and had to use text block without folding (
|
instead of
>
) plus escaping newlines with
\
at the end of each line. I'm a bit surprised that you run gradle with
run
step instead of
gradle-build-action
though
🙌 1
l
In Windows Powershell I needed to quote complex
-D
params, something like
-D"org.gradle.java.installations.auto-detect"=false
Not entirely sure if that's this issue you're hitting here, though ;-)
🙌 1
t
@grossws gradle-build-action version v2.1.0 introduced the ability to configure Gradle with the action without requiring invocations to be managed by the action. This was my first test ...
g
Ahh, thanks. I'll look into that if it could be useful for my actions
t
I thought so too... though, if I have to introduce windows-hacks such as
-D"key"=value
or
|
instead of
>
I'm not sure I'd want to move away from just letting the action handle the invocation.