Xdg.Directories/.drone.yml
Sam Therapy afe2243d08
misc(ci, README): Fix some small problems
Signed-off-by: Sam Therapy <sam@samtherapy.net>
2023-10-25 15:55:57 +02:00

30 lines
834 B
YAML

kind: pipeline
type: docker
name: Public Preview Builds
trigger:
branch:
- master
event:
- push
- tag
steps:
- name: Fetch Tags
image: alpine/git
commands:
- git fetch --tags
- name: Build for Release
image: mcr.microsoft.com/dotnet/sdk:7.0
commands:
- dotnet build -c Release -p:SymbolPackageFormat=symbols.nupkg -p:ContinuousIntegrationBuild=true
- dotnet build -c Release -p:ContinuousIntegrationBuild=true
- name: Publish
image: mcr.microsoft.com/dotnet/sdk:7.0
environment:
API_KEY:
from_secret: API_KEY
NUGET_REPO: https://git.froth.zone/api/packages/sam/nuget/index.json
commands:
- cd src/Xdg.Directories
- dotnet nuget push bin/Release/\*.symbols.nupkg --api-key $API_KEY --source $NUGET_REPO
- dotnet nuget push bin/Release/\*.snupkg --api-key $API_KEY --source $NUGET_REPO