Skip to content

Commit 5406f95

Browse files
committed
GitHub Action
1 parent ab324b1 commit 5406f95

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/dotnetcore.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ on: [push]
55
jobs:
66
build:
77

8-
runs-on: [windows]
8+
runs-on: [windows-latest]
99

1010
steps:
1111
- uses: actions/checkout@v1
1212
- name: Setup .NET Core
1313
uses: actions/setup-dotnet@v1
1414
with:
1515
dotnet-version: 2.2.108
16-
- name: Build with dotnet
17-
run:
18-
dotnet pack --configuration Release
19-
dotnet nuget push "bin/Release/GitExtensions.AzureDevOpsCommitMessage.1.0.0.nupkg" --source "github"
16+
- name: Build & package with dotnet
17+
run: dotnet pack --configuration Release
18+
- name: Push to GitHub nuget feed
19+
run: dotnet nuget push "bin/Release/GitExtensions.AzureDevOpsCommitMessage.1.0.0.nupkg" --source "github"

0 commit comments

Comments
 (0)