Skip to content

Commit

Permalink
Remove appveyor files and fix caching test for different locales #10
Browse files Browse the repository at this point in the history
  • Loading branch information
Ting-Yu Lin committed Jan 30, 2020
1 parent 02cb304 commit 12f45e6
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 146 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
deploy:
needs: build
name: Deploy Packages
runs-on: windows-latest
runs-on: ubuntu-latest
steps:
- name: Download Package artifact
uses: actions/download-artifact@master
Expand All @@ -59,4 +59,4 @@ jobs:
dotnet-version: 3.1.100

- name: Push to NuGet
run: dotnet nuget push nupkg\*.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://nuget.org --skip-duplicate
run: dotnet nuget push nupkg/*.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://nuget.org --skip-duplicate
2 changes: 1 addition & 1 deletion Agoda.Frameworks.DB/SpParameter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public static string CreateCacheKey(this SpParameter[] parameters, string spName
}

return parameters?
.OrderBy(x => x.Name)
.OrderBy(x => x.Name, StringComparer.OrdinalIgnoreCase)
.Aggregate(
$"{dbPrefix}{spName}:",
(seed, pair) =>
Expand Down
6 changes: 1 addition & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@

| Build | Status |
|--------|--------|
| Project | [![Build status](https://ci.appveyor.com/api/projects/status/l72mp8rhenjc9n42?svg=true)](https://ci.appveyor.com/project/jenol/net-loadbalancing) |
| Master | [![Build status](https://ci.appveyor.com/api/projects/status/l72mp8rhenjc9n42/branch/master?svg=true)](https://ci.appveyor.com/project/jenol/net-loadbalancing/branch/master) |
![](https://github.com/agoda-com/net-loadbalancing/workflows/.NET%20Core%20Build%20and%20Deploy/badge.svg)

## Overview

Expand Down
23 changes: 0 additions & 23 deletions appveyor.yml

This file was deleted.

115 changes: 0 additions & 115 deletions tools/publish.ps1

This file was deleted.

0 comments on commit 12f45e6

Please sign in to comment.