bye circleCI
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
7481c4d9a9
commit
2dbf5e22f7
|
@ -1,46 +0,0 @@
|
||||||
version: 2.1
|
|
||||||
|
|
||||||
defaults: &defaults
|
|
||||||
working_directory: ~/repo
|
|
||||||
docker:
|
|
||||||
- image: mcr.microsoft.com/dotnet/core/sdk:3.0
|
|
||||||
environment:
|
|
||||||
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
|
|
||||||
DOTNET_CLI_TELEMETRY_OPTOUT: 1
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
test:
|
|
||||||
<<: *defaults
|
|
||||||
steps:
|
|
||||||
- checkout
|
|
||||||
- run: dotnet restore
|
|
||||||
- run: dotnet build -c Release
|
|
||||||
- run: dotnet test -c Release
|
|
||||||
- persist_to_workspace:
|
|
||||||
root: .
|
|
||||||
paths: ./Structs/bin
|
|
||||||
|
|
||||||
deploy:
|
|
||||||
<<: *defaults
|
|
||||||
steps:
|
|
||||||
- checkout
|
|
||||||
- attach_workspace:
|
|
||||||
at: .
|
|
||||||
- run: dotnet nuget push ./Structs/bin/Release/MoonTools.Core.Structs.*.nupkg -k $API_KEY -s https://api.nuget.org/v3/index.json
|
|
||||||
|
|
||||||
workflows:
|
|
||||||
version: 2
|
|
||||||
test_and_deploy:
|
|
||||||
jobs:
|
|
||||||
- test:
|
|
||||||
filters:
|
|
||||||
tags:
|
|
||||||
only: /.*/
|
|
||||||
- deploy:
|
|
||||||
requires:
|
|
||||||
- test
|
|
||||||
filters:
|
|
||||||
branches:
|
|
||||||
ignore: /.*/
|
|
||||||
tags:
|
|
||||||
only: /^\d+\.\d+\.\d+(-rc\d+)?$/
|
|
|
@ -1,6 +1,6 @@
|
||||||
# MoonTools.Core.Structs
|
# MoonTools.Core.Structs
|
||||||
|
|
||||||
[![NuGet Badge](https://buildstats.info/nuget/MoonTools.Core.Structs)](https://www.nuget.org/packages/MoonTools.Core.Structs/)
|
[![NuGet Badge](https://buildstats.info/nuget/MoonTools.Core.Structs)](https://www.nuget.org/packages/MoonTools.Core.Structs/)
|
||||||
[![CircleCI](https://circleci.com/gh/MoonsideGames/MoonTools.Core.Structs.svg?style=svg)](https://circleci.com/gh/MoonsideGames/MoonTools.Core.Structs)
|
[![Build Status](https://drone.moonside.games/api/badges/MoonsideGames/MoonTools.Core.Structs/status.svg)](https://drone.moonside.games/MoonsideGames/MoonTools.Core.Structs)
|
||||||
|
|
||||||
This library contains structs that are generally useful in other MoonTools libraries.
|
This library contains structs that are generally useful in other MoonTools libraries.
|
Loading…
Reference in New Issue