Skip to content
Permalink
08c06c70fd
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
22 lines (19 sloc) 323 Bytes
kind: pipeline
name: build
steps:
- name: fail
image: alpine:3.8
commands:
- exit 1
- name: skip_on_fail
image: alpine:3.8
commands:
- echo this should not run
- name: run_on_fail
image: alpine:3.8
commands:
- echo "this should run, pipeline is failing"
when:
status:
- success
- failure