Right now the actions are defined like so:
[[actions]]
type = "post-build"
command = ["echo", "test_post_build"]
If someone wants two post-build
actions, the manifest will be:
[[actions]]
type = "post-build"
command = ["echo", "test_post_build_1"]
[[actions]]
type = "post-build"
command = ["echo", "test_post_build_2"]
We could support a shorter version by accepting multiple commands in a single action definition:
[[actions]]
type = "post-build"
command = [["echo", "test_post_build_1"], ["echo", "test_post_build_2"]]
Pay now to fund the work behind this issue.
Get updates on progress being made.
Maintainer is rewarded once the issue is completed.
You're funding impactful open source efforts
You want to contribute to this effort
You want to get funding like this too