Skip to content
Discussion options

You must be logged in to vote

You can use the script section using interpolation expressions. For example:

import groovy.json.JsonOutput

params.foo = 'bar'
params.bar = 'baz'

process saveParams {
    output:
        path 'params.json'

    script:
      "echo '${JsonOutput.toJson(params)}' > params.json"
}

Replies: 1 comment 2 replies

Comment options

You must be logged in to vote
2 replies
@massung
Comment options

@pmoradi2022
Comment options

Answer selected by massung
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants