Define new build pipeline

This commit is contained in:
Brain 2022-08-24 23:05:00 +02:00 committed by Gitea
parent 8ff500f749
commit 48150b5677
1 changed files with 11 additions and 31 deletions

View File

@ -1,46 +1,26 @@
---
kind: pipeline
type: docker
name: build_webseite_main
workspace:
path: /workspace
steps:
- name: build
image: registry.wtf-eg.net/lektor
image_pull_secrets:
- dockerconfig
name: build
trigger:
branch:
branch:
- main
event:
event:
- push
---
kind: pipeline
type: docker
name: build_webseite_pr
workspace:
path: /workspace
- pull_request
steps:
- name: build
image: registry.wtf-eg.net/lektor
image: python:3.10-bullseye
commands:
- python3 -m pip install --user pipx
- export PATH=/root/.local/bin:$PATH
- pipx install lektor
- lektor build
image_pull_secrets:
- dockerconfig
trigger:
branch:
- main
event:
- pull_request
---
kind: signature
hmac: a7c0aeda778717207ec641e7af90a358376eb3bfb22beeb67217b6d201e9e675
hmac: aa654e71bb04571a3861f7b05550caea1b75b162d8c2710f1498a36dc5c2b8da
...