Skip to content

Commit a1742eb

Browse files
switch to windows-2019 to support .net core 2.1 (#133)
* switch to windows-2019 to support .net core 2.1 * Update CODEOWNERS * temporary stop of nuget pkg push
1 parent 341ea4f commit a1742eb

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
* @budgetpreneur @crimsonred @mohitpubnub
22
README.md @techwritermat
3+
.github @parfeon
34

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
token: ${{ secrets.GH_TOKEN }}
2929
publish-nuget:
3030
name: Publish to NuGet
31-
runs-on: windows-latest
31+
runs-on: windows-2019
3232
needs: check-release
3333
if: ${{ needs.check-release.outputs.release == 'true' }}
3434
steps:

.github/workflows/release/publish-packages.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ $RELEASES_PATH = "$githubWorkspace\.github\.release"
66
# Publish package
77
$PACKAGE_NAME = Get-ChildItem -Name -Path "$RELEASES_PATH\Api\*" -Include *.nupkg
88
$PACKAGE_PATH = "$RELEASES_PATH\Api\$PACKAGE_NAME"
9-
nuget.exe push $PACKAGE_PATH -Source "https://www.nuget.org" -ApiKey $nugetApiKey
9+
# nuget.exe push $PACKAGE_PATH -Source "https://www.nuget.org" -ApiKey $nugetApiKey
1010

1111
# Publish PCL package.
1212
$PCL_PACKAGE_NAME = Get-ChildItem -Name -Path "$RELEASES_PATH\PCL\*" -Include *.nupkg
1313
$PCL_PACKAGE_PATH = "$RELEASES_PATH\PCL\$PCL_PACKAGE_NAME"
14-
nuget.exe push $PCL_PACKAGE_PATH -Source "https://www.nuget.org" -ApiKey $nugetApiKey
14+
# nuget.exe push $PCL_PACKAGE_PATH -Source "https://www.nuget.org" -ApiKey $nugetApiKey
1515

1616
# Publish UWP package.
1717
$UWP_PACKAGE_NAME = Get-ChildItem -Name -Path "$RELEASES_PATH\UWP\*" -Include *.nupkg
1818
$UWP_PACKAGE_PATH = "$RELEASES_PATH\UWP\$UWP_PACKAGE_NAME"
19-
nuget.exe push $UWP_PACKAGE_PATH -Source "https://www.nuget.org" -ApiKey $nugetApiKey
19+
# nuget.exe push $UWP_PACKAGE_PATH -Source "https://www.nuget.org" -ApiKey $nugetApiKey

0 commit comments

Comments
 (0)