File tree Expand file tree Collapse file tree 3 files changed +36
-42
lines changed Expand file tree Collapse file tree 3 files changed +36
-42
lines changed Original file line number Diff line number Diff line change 6
6
version : 2
7
7
updates :
8
8
- package-ecosystem : nuget
9
- directory : " /"
9
+ directory : " /src/ "
10
10
schedule :
11
11
interval : daily
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ name : Gawe CI
2
+
3
+ on :
4
+ workflow_dispatch :
5
+ inputs :
6
+ deploy :
7
+ description : Create and Deploy package
8
+ type : boolean
9
+ default : true
10
+ nuget-deploy :
11
+ description : Deploy package to NuGet gallery
12
+ type : boolean
13
+ default : true
14
+ push :
15
+ paths :
16
+ - ' src/**'
17
+ branches : [master, dev]
18
+ pull_request :
19
+ branches : [master]
20
+
21
+ permissions :
22
+ contents :
23
+ write
24
+ packages :
25
+ write
26
+ pull-requests :
27
+ write
28
+
29
+ jobs :
30
+ build :
31
+ uses : SAPTeamDEV/Gawe/.github/workflows/dotnet.yml@master
32
+ with :
33
+ deploy : ${{ !contains(inputs.deploy, 'false') }}
34
+ nuget-deploy : ${{ !contains(inputs.nuget-deploy, 'false') }}
35
+ secrets : inherit
You can’t perform that action at this time.
0 commit comments