# Pipeline only show default step

**URL:** https://drone.discourse.group/t/pipeline-only-show-default-step/8772
**Category:** Drone Support
**Created:** [February 13, 2019, 6:11am UTC](https://drone.discourse.group/t/pipeline-only-show-default-step/8772 "2019-02-13T06:11:26Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![kxw07](https://yyz1.discourse-cdn.com/flex003/user_avatar/drone.discourse.group/kxw07/32/3715_2.png) [@kxw07](https://drone.discourse.group/u/kxw07)
#### Post date: [February 13, 2019, 6:11am UTC](https://drone.discourse.group/t/pipeline-only-show-default-step/8772/1 "2019-02-13T06:11:26Z")

</div>

Hi all,

I create a pipeline at 1.0.0-rc5, but pipeline only shows default step.  
Similar pipeline works perfect.  
Here is screenshot and my .drone.yml

 ![23](https://canada1.discourse-cdn.com/flex003/uploads/testdrone/original/2X/0/0d0d91ebcf7c9ddb55310e422ad4cb72121f24ac.png)

clone:  
default:  
image: plugins/git  
recursive: true  
submodule\_override:  
mysubmodule: [http://git](http://git)…

pipeline:  
build:  
image: alpine-jdk8  
environment:  
- GRADLE\_USER\_HOME=~/.gradle  
commands:  
- ./gradlew sonarqube -Dsonar.host.url=[http://10.20.8.78:9000](http://10.20.8.78:9000) -Dsonar.login=xxx  
- /bin/bash ./drone/docker\_cloud.sh  
when:  
branch:  
- develop  
event: [tag]

gcr:  
image: plugins/gcr  
registry: [asia.gcr.io](http://asia.gcr.io)  
repo: repo/my\_repo  
dockerfile: ./drone/Dockerfile  
tags: ${DRONE\_TAG}  
secrets: [google\_credentials]  
when:  
branch:  
- develop  
event: [tag]

slack:  
image: plugins/slack  
channel: monitor  
webhook: [https://hooks](https://hooks)…  
username: drone  
template: \>  
{{#success build.status}}  
{{repo.name}} build {{build.number}} {{build.ref}} {{build.link}} succeeded.  
{{else}}  
{{repo.name}} build {{build.number}} {{build.ref}} {{build.link}} failed.  
{{/success}}  
when:  
branch:  
- develop  
status:  
- success  
- failure

---

<div class="post-metadata">

### Author: ![bradrydzewski](https://yyz1.discourse-cdn.com/flex003/user_avatar/drone.discourse.group/bradrydzewski/32/3513_2.png) [@bradrydzewski](https://drone.discourse.group/u/bradrydzewski)
#### Post date: [February 13, 2019, 7:09am UTC](https://drone.discourse.group/t/pipeline-only-show-default-step/8772/2 "2019-02-13T07:09:16Z")

</div>

the syntax in your yaml looks incorrect. I recommend taking a look at the yaml format as described in the 1.0 docs: [https://docs.drone.io/user-guide/pipeline/](https://docs.drone.io/user-guide/pipeline/)

---

<div class="post-metadata">

### Author: ![kxw07](https://yyz1.discourse-cdn.com/flex003/user_avatar/drone.discourse.group/kxw07/32/3715_2.png) [@kxw07](https://drone.discourse.group/u/kxw07)
#### Post date: [February 13, 2019, 9:52am UTC](https://drone.discourse.group/t/pipeline-only-show-default-step/8772/3 "2019-02-13T09:52:20Z")

</div>

It’s strange…  
I have other project can build successfully.  
And the different between drone.yml are project name and repo name.

---

<div class="post-metadata">

### Author: ![kxw07](https://yyz1.discourse-cdn.com/flex003/user_avatar/drone.discourse.group/kxw07/32/3715_2.png) [@kxw07](https://drone.discourse.group/u/kxw07)
#### Post date: [February 15, 2019, 2:18am UTC](https://drone.discourse.group/t/pipeline-only-show-default-step/8772/4 "2019-02-15T02:18:20Z")

</div>

Pipeline works with 1.0 drone format.

Btw can Drone add function of removing all repository data in db?  
I had a repository it works until I reinstall Drone. (remove all data manually)
