Skip to content

Commit

Permalink
Update the CI script to deploy NuGet packages and GitHub releases.
Browse files Browse the repository at this point in the history
Update README.md.
  • Loading branch information
KeRNeLith committed Jun 28, 2018
1 parent 6e4b1c5 commit c359cd0
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 1 deletion.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[![Nuget downloads](https://img.shields.io/nuget/v/here.svg)](https://www.nuget.org/packages/Here)
[![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/github/KeRNeLith/Here?branch=master&svg=true)](https://ci.appveyor.com/project/KeRNeLith/Here)
[![GitHub license](https://img.shields.io/github/license/mashape/apistatus.svg)](https://github.com/KeRNeLith/Here/blob/master/LICENSE)

Expand Down Expand Up @@ -25,4 +26,12 @@ For more details on `Maybe<T>` usage see the following [tips](src/Here/Maybe/REA
- JetBrains.Annotations
- NUnit (for unit testing)

---

## Installation

Here is available on [NuGet](https://www.nuget.org/packages/Here)

PM> Install-Package Here

---
36 changes: 35 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,38 @@ build:
# Artifact
artifacts:
- path: '**\bin\Release\*.nupkg'
name: NuGet
name: NuGet

# Deploy
deploy:
# MyGet
- provider: NuGet
server: https://www.myget.org/F/kernelith-ci/api/v2/package
api_key:
secure: ANF+joC2B+NahxCFbLPOjNvEAo36F2F4QJu6zLwoIf2I9KwkxKyCSuNxDpLmJmtU
skip_symbols: true
on:
branch: master
configuration: Release
# NuGet
- provider: NuGet
api_key:
secure: H9AFeC6uNE88rUiZxmDQNt50bhQ0ilMCua/X9s1++dNB0wMHWrKY8xjfM/M2xFja
on:
branch: master
configuration: Release
APPVEYOR_REPO_TAG: true
# GitHub
- provider: GitHub
auth_token:
secure: fLTTmcGOM55kigJC4vErpObFmybCtzQtwb4QN55BTNq3GDGaOCoHDoIPxexzO59d
release: '${Build_Version}'
description: 'Version ${Build_Version}'
artifact: NuGet
draft: false
prerelease: false
force_update: true
on:
branch: master
configuration: Release
APPVEYOR_REPO_TAG: true

0 comments on commit c359cd0

Please sign in to comment.