Hello there,
It would be great if we have an option to add additional options to the update command. In my case I would like to attach --no-daemon to the run (since I'm facing some issues with existing running daemons), but there doesn't seem to be option for that.
Example:
jobs:
update-wrapper:
steps:
- name: Update Gradle Wrapper
uses: gradle-update/update-gradle-wrapper-action@v2
with:
additional-arguments: --no-daemon
This would result in following command to run:
./gradlew wrapper --gradle-version 9.2.1 --distribution-type bin --gradle-distribution-sha256-sum 72f44c9f8ebcb1af43838f45ee5c4aa9c5444898b3468ab3f4af7b6076c5bc3f --no-daemon
Hello there,
It would be great if we have an option to add additional options to the update command. In my case I would like to attach
--no-daemonto the run (since I'm facing some issues with existing running daemons), but there doesn't seem to be option for that.Example:
This would result in following command to run: