Hi,
I'm new to pipelines, which is probably part of my issue.
Following the blog post introducing this pipe:
atlassian/bitbucket-build-statistics:0.1.0
https://community.atlassian.com/t5/Bitbucket-Pipelines-articles/Bitbucket-Pipes-digest-October-2020/ba-p/1508196
I've created and deployed a pipeline using the template yaml file.
script:
- pipe: atlassian/bitbucket-build-statistics:0.1.0
variables:
BITBUCKET_USERNAME: $BITBUCKET_USERNAME
BITBUCKET_APP_PASSWORD: $BITBUCKET_APP_PASSWORDwhere I've used my username and app password.
The pipeline runs and completes successfully, but I do not see any report on build statistics. Where is the output shown?
I've also tried adding the filename option.
script:
- pipe: atlassian/bitbucket-build-statistics:0.2.0
variables:
BITBUCKET_USERNAME: $BITBUCKET_USERNAME
BITBUCKET_APP_PASSWORD: $BITBUCKET_APP_PASSWORD
FILENAME: "build_usage.txt"Where would I find the output file?<br>