Concourse templating: How to escape double curly-braces (parameters), to use as literals?

Viewed 307

How do we escape double curly braces and use them as literals instead of fly interpreting them as parameters?

I wan to be able to do something like:

jobs:
- task: greet-him
  params:
    STRING: 'Hello {{firstname}} {{lastname}}!'

With the STRING param as a literal string.

0 Answers
Related