Here is my bitbucket-pipelines.yml:
pipelines:
branches:
feature/*:
- step:
name: test artifacts
script:
- mkdir abc
- echo "abc1" > abc/testartifacts.txt
artifacts:
- abc
- step:
script:
- ls -altrh
- cat abc/*
In the second step abc/
is not present... Why? What am I doing wrong