Dynamically set parameter values of matrix

Hi @jerdog , I managed to do this by using a dynamic config. I first run a script to generate the values I need and then pass them as env variables to a “generate-config” bash script. Then I expand those values in the matrix.

The tricky part is that the continuation config accepts just a json object, whereas I wanted to pass something like this: [2.3 , 5.6, 5.7, 8.0] .
A helpful video was this:

where they left the parameters as an empty object: parameters: {} and they passed the variable needed as a en env var to the bash script.