123456789101112131415161718192021222324252627 |
- 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
|