Replies: 1 comment
-
It's very hard to read your yaml examples, can you please fix the formatting see the github guides for help. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
How could I add another step to existing bitbucket pipelines yml file?
This is the current file
``default:
name: build something
script:
- command1
- command2
And I want to add another step to it. Step can be copied from another file but need to replace the environment variable.
``default:
name: to be added
script:
- new command ${env:variable}
Result should be something like this
``default:
name: build something
script:
- command1
- command2
name: to be added
script:
- new command run
Beta Was this translation helpful? Give feedback.
All reactions