You've already forked woodpecker
							
							
				mirror of
				https://github.com/woodpecker-ci/woodpecker.git
				synced 2025-10-30 23:27:39 +02:00 
			
		
		
		
	* Refactor: move cncd/pipeline/ to pipeline/ * Refactor: move pipeline/pipeline/ to pipeline/
		
			
				
	
	
		
			20 lines
		
	
	
		
			307 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			307 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| workspace:
 | |
|   base: /go
 | |
|   path: src/github.com/drone/envsubst
 | |
| 
 | |
| clone:
 | |
|   git:
 | |
|     image: plugins/git
 | |
|     depth: 50
 | |
| 
 | |
| pipeline:
 | |
|   build:
 | |
|     image: golang:1.7
 | |
|     commands:
 | |
|       - echo this step should fail
 | |
|       - exit 1
 | |
|   test:
 | |
|     image: golang:1.7
 | |
|     commands:
 | |
|       - echo this step should never execute
 |