27 lines
No EOL
531 B
YAML
27 lines
No EOL
531 B
YAML
kind: pipeline
|
|
name: default
|
|
|
|
clone:
|
|
skip_verify: true
|
|
|
|
steps:
|
|
- name: build and publish
|
|
image: mcr.microsoft.com/dotnet/sdk:7.0
|
|
environment:
|
|
NugetEndpoint:
|
|
from_secret: NugetEndpoint
|
|
NugetApiKey:
|
|
from_secret: NugetApiKey
|
|
commands:
|
|
- chmod +x ./build.sh
|
|
- ./build.sh -NugetEndpoint $NugetEndpoint -NugetApiKey $NugetApiKey
|
|
- name: notify
|
|
image: drillster/drone-email
|
|
settings:
|
|
host: 192.168.1.3
|
|
skip_verify: true
|
|
from: build@robware.uk
|
|
when:
|
|
status:
|
|
- changed
|
|
- failure |