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 e554aa5 commit a09a0b7Copy full SHA for a09a0b7
.github/workflows/on-push.yml
@@ -1,6 +1,8 @@
1
-name: On Push
+name: Build master on push
2
3
-on: [push]
+on:
4
+ push:
5
+ branches: [ master ]
6
7
jobs:
8
BuildAndTest:
.github/workflows/pull-request.yml
@@ -73,7 +73,6 @@ jobs:
73
run: dotnet test -c ${{ matrix.configuration }} -f net45
74
75
Pack:
76
- if: 1 == 2
77
needs: [Build, Test]
78
runs-on: windows-latest
79
env:
@@ -99,7 +98,7 @@ jobs:
99
98
run: dotnet pack src/ICSharpCode.SharpZipLib/ICSharpCode.SharpZipLib.csproj --configuration Release --output dist /p:Version=$(git describe --abbrev | % { $_.substring(1) })-PR
100
101
- name: Upload nuget package artifact
102
- uses: actions/upload-artifact@v1
+ uses: actions/upload-artifact@v2
103
with:
104
name: Nuget package
105
path: dist/*.nupkg
0 commit comments