Skip to content
Permalink
29ea8ba433
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
25 lines (22 sloc) 417 Bytes
kind: pipeline
type: docker
name: default
steps:
- name: test1
image: alpine
commands:
- echo this should pass
- name: test2
image: alpine
commands:
- echo this should fail
- exit 2
- name: test3
image: alpine
commands:
- echo stage status is $DRONE_STAGE_STATUS
- echo build status is $DRONE_BUILD_STATUS
when:
status:
- success
- failure