32 lines
509 B
YAML
32 lines
509 B
YAML
|
---
|
||
|
kind: pipeline
|
||
|
type: docker
|
||
|
name: build
|
||
|
|
||
|
steps:
|
||
|
- name: build image
|
||
|
image: plugins/docker
|
||
|
settings:
|
||
|
repo: 192.168.1.196:5000/jtom38/newsbot-portal
|
||
|
registry: 192.168.1.196:5000
|
||
|
insecure: true
|
||
|
tags:
|
||
|
- latest
|
||
|
trigger:
|
||
|
branch:
|
||
|
- master
|
||
|
|
||
|
---
|
||
|
kind: pipeline
|
||
|
type: docker
|
||
|
name: compile
|
||
|
steps:
|
||
|
- name: Compile project
|
||
|
image: mcr.microsoft.com/dotnet/sdk:7.0.103
|
||
|
commands:
|
||
|
- dotnet restore
|
||
|
- dotnet build
|
||
|
trigger:
|
||
|
event:
|
||
|
- pull_request
|
||
|
|