Pipeline only show default step

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

clone:
default:
image: plugins/git
recursive: true
submodule_override:
mysubmodule: http://git

pipeline:
build:
image: alpine-jdk8
environment:
- GRADLE_USER_HOME=~/.gradle
commands:
- ./gradlew sonarqube -Dsonar.host.url=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
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
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

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/

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

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)