I can’t figure out why the <<foobar>>
interpolations aren’t working? I expected echo "hello"
.
version: 2
jobs:
a:
docker:
- image: circleci/python:3.7
steps:
- run:
name: ''
command: |
echo ""
workflows:
ci:
jobs:
- a:
context: org-global-v2
version: 2
# Original config.yml file:
# version: 2.1
#
# workflows:
# ci:
# jobs:
# - a:
# foobar: hello
# context: org-global-v2
#
# jobs:
# a:
# parameters:
# foobar:
# type: string
# docker:
# - image: circleci/python:3.7
# steps:
# - run:
# name: << foobar >>
# command: |
# echo \"<<foobar>>\"