Compare commits

..

2 Commits

Author SHA1 Message Date
1872300f55 Merge pull request 'fix: attempt to configure separate pipelines for prs and pushes to main' (#79) from drone_pipline_separation into main
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #79
2021-08-18 15:48:11 +02:00
Stephan
6eac032d6f fix: attempt to configure separate pipelines for prs and pushes to main
All checks were successful
continuous-integration/drone/pr Build is passing
Atm. two builds are created which lead to the missing recognition of the success of one of the builds.
2021-08-18 15:41:14 +02:00

View File

@ -1,7 +1,7 @@
---
kind: pipeline
type: docker
name: build_webseite
name: build_webseite_main
workspace:
path: /workspace
@ -12,3 +12,28 @@ steps:
image_pull_secrets:
- dockerconfig
trigger:
branch:
- main
event:
- push
---
kind: pipeline
type: docker
name: build_webseite_pr
workspace:
path: /workspace
steps:
- name: build
image: registry.wtf-eg.net/lektor
image_pull_secrets:
- dockerconfig
trigger:
event:
- pull_request