Hello,
I want to use bitbucket DRY feature with yaml anchors.
branches:
master:
- step: *build
definitions:
steps:
- step: &build
image: openjdk:11.0-jdk-buster
name: Build and test vol di
script:
- date +%Y-%m-%d_%H%M > bld_date
artifacts:
- bld_date
I get:

What I am doing wrong?