Skip to content

Commit b851714

Browse files
committed
switched to GitHub packages for CI NuGet builds
1 parent 4b2986a commit b851714

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Common.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project>
22

33
<PropertyGroup>
4-
<VersionPrefix>1.18.3</VersionPrefix>
4+
<VersionPrefix>1.19.0</VersionPrefix>
55
</PropertyGroup>
66

77
<PropertyGroup>

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<a href="https://codecov.io/gh/revoframework/Revo"><img src="https://img.shields.io/codecov/c/github/revoframework/Revo?logo=codecov&style=flat-square" alt="Code coverage"></a>
88
<a href="https://github.com/revoframework/Revo/releases"><img src="https://img.shields.io/github/release-date/revoframework/Revo?label=latest%20release&style=flat-square" alt="Latest release date"></a>
99
<a href="https://www.nuget.org/packages?q=revo"><img src="https://img.shields.io/nuget/v/Revo.Core?logo=NuGet&style=flat-square" alt="NuGet packages"></a>
10-
<a href="https://www.myget.org/gallery/revoframework"><img src="https://img.shields.io/myget/revoframework/vpre/Revo.Core?label=nuget%20CI&logo=NuGet&style=flat-square" alt="CI NuGet packages at MyGet"></a><br>
10+
<a href="https://github.com/orgs/revoframework/packages?repo_name=Revo"><img src="https://img.shields.io/badge/nuget%20CI-source-blue?logo=NuGet&style=flat-square" alt="CI NuGet packages at GitHub"></a><br>
1111
<a href="https://revoframework.gitbook.io/revo/"><img src="https://img.shields.io/badge/docs-GITBOOK-blue.svg?style=flat-square" alt="Docs"></a>
1212
<a href="https://gitter.im/revoframework/Revo?utm_source=share-link&utm_medium=link&utm_campaign=share-link"><img src="https://img.shields.io/gitter/room/revoframework/Revo?color=4BB595&logo=gitter&&style=flat-square" alt="Gitter chat"></a>
1313
<a href="https://github.com/revoframework/Revo/pulls"><img src="https://img.shields.io/badge/PRs-welcome-green?style=flat-square" alt="PRs welcome"></a>
@@ -233,7 +233,7 @@ You can also start by reading the 📘 [**reference guide**](https://docs.revofr
233233
## 📦 Packages
234234

235235
Released version are available in form of NuGet packages.
236-
There is also a separate channel for [**pre-release CI packages at MyGet**](https://www.myget.org/gallery/revoframework).
236+
There is also a separate channel for [**pre-release CI packages at GitHub packages**](https://github.com/orgs/revoframework/packages?repo_name=Revo).
237237

238238
<div style="width:100%";>
239239
<table border="0" cellpadding="0" cellspacing="0" style="float:left;">

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ steps:
2626
- task: Bash@3
2727
inputs:
2828
targetType: 'inline'
29-
script: 'dotnet-cake --Target="CI" --Configuration="Release" --ReleaseNuGetApiKey="$(NUGET_ORG_API_KEY)" --PreReleaseNuGetApiKey="$(MYGET_API_KEY)"'
29+
script: 'dotnet-cake --Target="CI" --Configuration="Release" --ReleaseNuGetApiKey="$(NUGET_ORG_API_KEY)" --PreReleaseNuGetApiKey="$(GITHUB_API_KEY)"'

build.cake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ using System.Xml;
77
const string SolutionName = "Revo";
88

99
const string RelaseNuGetSourceUrl = "https://api.nuget.org/v3/index.json";
10-
const string PreRelaseNuGetSourceUrl = "https://www.myget.org/F/revoframework/api/v3/index.json";
10+
const string PreRelaseNuGetSourceUrl = "https://nuget.pkg.github.com/revoframework/index.json";
1111

1212
readonly string SolutionDir = Context.Environment.WorkingDirectory.FullPath;
1313
readonly string SolutionFile = System.IO.Path.Combine(SolutionDir, SolutionName + ".sln");

0 commit comments

Comments
 (0)