Compare commits
10 Commits
v2.6.0
...
buildChang
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d7947f010a | ||
|
|
bc4767f479 | ||
|
|
fb60718771 | ||
|
|
c596c7787c | ||
|
|
1625f787d2 | ||
|
|
b0825b8339 | ||
|
|
a5af6f4886 | ||
|
|
d761e6c904 | ||
|
|
ef33598e31 | ||
|
|
a551a1149e |
@@ -52,7 +52,7 @@ Provides a set of extra authentication providers for OWIN ([Project Katana](http
|
||||
- Wargaming
|
||||
|
||||
## Implementation Guides
|
||||
For above listed provider implementation guide, visit Jerrie Pelser's blog - [Be a Big Rockstar](http://www.beabigrockstar.com)
|
||||
For above listed provider implementation guide, visit Jerrie Pelser's blog - [oauthforaspnet](http://www.oauthforaspnet.com)
|
||||
|
||||
## Installation
|
||||
|
||||
|
||||
12
Rakefile.rb
12
Rakefile.rb
@@ -15,7 +15,7 @@ PACKAGES = File.expand_path("packages")
|
||||
TOOLS = File.expand_path("tools")
|
||||
NUGET = File.expand_path("#{TOOLS}/nuget")
|
||||
NUGET_EXE = File.expand_path("#{TOOLS}/nuget/nuget.exe")
|
||||
@version = "2.6.0"
|
||||
@version = ENV['APPVEYOR_REPO_TAG_NAME'] || '0.0.1-alpha1'
|
||||
PROJECTS = Dir.glob('src/*').select{|dir| File.directory? dir }
|
||||
|
||||
desc 'Retrieve things'
|
||||
@@ -63,10 +63,16 @@ end
|
||||
|
||||
desc 'publish nugets'
|
||||
task :nuspec_publish do
|
||||
if ENV['APPVEYOR_REPO_TAG'] != 'true'
|
||||
puts 'not publishing since APPVEYOR_REPO_TAG has not been set. Please add a github tag'
|
||||
return nil
|
||||
end
|
||||
|
||||
|
||||
PROJECTS.each{|dir|
|
||||
Dir.chdir(dir) do
|
||||
sh "#{NUGET_EXE} push #{FileList["*.nupkg"].first}"
|
||||
sh "#{NUGET_EXE} push #{FileList["*.nupkg"].first} -ApiKey #{NUGET_KEY}"
|
||||
end
|
||||
}
|
||||
sh "#{NUGET_EXE} push #{FileList["*.nupkg"].first}"
|
||||
sh "#{NUGET_EXE} push #{FileList["*.nupkg"].first} -ApiKey #{NUGET_KEY}"
|
||||
end
|
||||
|
||||
@@ -5,6 +5,9 @@ install:
|
||||
- set PATH=C:\Ruby22\bin;%PATH%
|
||||
- bundle install
|
||||
build_script:
|
||||
- rake preflight
|
||||
- rake publish
|
||||
artifacts:
|
||||
- path: src\**\*.nupkg
|
||||
environment:
|
||||
NUGET_KEY:
|
||||
secure: 5m1zupizmNvVwCg2MDUkRGQbbVfNypLo9yCstTAXQ5KHDypBe5RrGKi1HnEAhAy8
|
||||
Reference in New Issue
Block a user