We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab324b1 commit 5406f95Copy full SHA for 5406f95
.github/workflows/dotnetcore.yml
@@ -5,15 +5,15 @@ on: [push]
5
jobs:
6
build:
7
8
- runs-on: [windows]
+ runs-on: [windows-latest]
9
10
steps:
11
- uses: actions/checkout@v1
12
- name: Setup .NET Core
13
uses: actions/setup-dotnet@v1
14
with:
15
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"
+ - name: Build & package with dotnet
+ run: dotnet pack --configuration Release
+ - name: Push to GitHub nuget feed
+ run: dotnet nuget push "bin/Release/GitExtensions.AzureDevOpsCommitMessage.1.0.0.nupkg" --source "github"
0 commit comments