CLI fails to run when yml anchors used

When using anchor tags on either 0.8.2 or 0.8.5 the following error results when drone exec is ran with drone-cli:
Invalid or missing image

When the anchors are removed this runs fine.

An example of an anchor:

default_node_setup: &node_lts_carbon_build
  image: xxx/node-lts-carbon-build:100.0.1
  pull: true

pipeline:
  install-and-build:
    <<: *node_lts_carbon_build
    commands:
        - npm install

Runs fine when sent to the server with anchor tags. :thinking:

1 Like